ifsc 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -2
- data/README.md +3 -3
- data/ifsc.gemspec +2 -2
- data/src/IFSC.json +1 -1
- data/src/banknames.json +38 -10
- data/src/banks.json +552 -187
- data/src/ruby/bank.rb +31 -3
- data/src/sublet.json +56 -33
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 551ba69b5c3bb77d97604e90b16c7c1cbcb34a2c54678c2d56427d31ac8c6501
|
|
4
|
+
data.tar.gz: aba3bd2ad855a5d39822ba22d8910413ed31bffeaa6d8f22ff7b5c346601275e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29ee2e3f08a350d3386217978b435482f546a510ed7a958d55e4a6d568ad32fc26e1073e0b677b4b5b1a571693b59c9fd69bbd8f451a067fa9893ab7fef1da22
|
|
7
|
+
data.tar.gz: 79bb5faef4d535acb5c8babb18ef2df66636da31d1dd08db1bdfc25d3380035fe437f6849a7ebf4b6477a80fe634b6e1064650b623bf67832f1de50872791ca6
|
data/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
5
5
|
|
|
6
6
|
## [UNRELEASED][unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.0.2][2.0.2]
|
|
9
|
+
## Changed
|
|
10
|
+
- Metadata changes
|
|
11
|
+
|
|
8
12
|
## [2.0.1][2.0.1]
|
|
9
13
|
## Changed
|
|
10
|
-
- Metadata
|
|
14
|
+
- Metadata changes
|
|
11
15
|
|
|
12
16
|
## [2.0.0][2.0.0]
|
|
13
17
|
### Removed
|
|
@@ -223,7 +227,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
223
227
|
|
|
224
228
|
- Removes some data formats (YAML/Large JSON) for cleaner code. If you were using them, please let create an issue.
|
|
225
229
|
|
|
226
|
-
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.
|
|
230
|
+
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.2...HEAD
|
|
231
|
+
[2.0.2]: https://github.com/razorpay/ifsc/releases/tag/2.0.2
|
|
227
232
|
[2.0.1]: https://github.com/razorpay/ifsc/releases/tag/2.0.1
|
|
228
233
|
[2.0.0]: https://github.com/razorpay/ifsc/releases/tag/2.0.0
|
|
229
234
|
[1.6.1]: https://github.com/razorpay/ifsc/releases/tag/1.6.1
|
data/README.md
CHANGED
|
@@ -4,9 +4,9 @@ This is part of the IFSC toolset released by Razorpay.
|
|
|
4
4
|
You can find more details about the entire release at
|
|
5
5
|
[ifsc.razorpay.com](https://ifsc.razorpay.com).
|
|
6
6
|
|
|
7
|
-
[](https://microbadger.com/images/razorpay/ifsc:2.0.2) [](https://opensource.org/licenses/MIT) [](http://makeapullrequest.com)
|
|
8
8
|
|
|
9
|
-
[](https://microbadger.com/images/razorpay/ifsc:2.0.2) [](https://badge.fury.io/js/ifsc) [](https://badge.fury.io/rb/ifsc) [](https://badge.fury.io/ph/razorpay%2Fifsc) [](https://hex.pm/packages/ifsc)
|
|
10
10
|
|
|
11
11
|
## Dataset
|
|
12
12
|
|
|
@@ -76,7 +76,7 @@ require "ifsc"
|
|
|
76
76
|
|
|
77
77
|
The PHP package has a dependency on the virtual package `php-http/client-implementation` which requires you to install an adapter, but we do not care which one. That is an implementation detail in your application. You do not have to use the `php-http/curl-client` if you do not want to. You may use the `php-http/guzzle6-adapter`. Read more about the virtual packages, why this is a good idea and about the flexibility it brings at the [HTTPlug docs](http://docs.php-http.org/en/latest/httplug/users.html). You can find a list of suported providers on [packagist](https://packagist.org/providers/php-http/client-implementation).
|
|
78
78
|
|
|
79
|
-
The minimum [PHP version supported is 7.
|
|
79
|
+
The minimum [PHP version supported is 7.3](https://endoflife.date/php). The package can be installed on PHP>=7.1 however.
|
|
80
80
|
|
|
81
81
|
## Node.js
|
|
82
82
|
|
data/ifsc.gemspec
CHANGED
|
@@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = 'ifsc'
|
|
6
|
-
s.version = '2.0.
|
|
7
|
-
s.date = '2021-
|
|
6
|
+
s.version = '2.0.2'
|
|
7
|
+
s.date = '2021-11-16'
|
|
8
8
|
s.summary = 'IFSC code database to help you validate IFSC codes'
|
|
9
9
|
s.description = 'A simple gem by @razorpay to help you validate your IFSC codes. IFSC codes are bank codes within India'
|
|
10
10
|
s.authors = ['Abhay Rana', 'Nihal Gonsalves']
|