ifsc 2.0.7 → 2.0.8
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 +16 -11
- data/README.md +25 -15
- data/ifsc.gemspec +2 -2
- data/src/IFSC.json +1 -1
- data/src/banknames.json +18 -12
- data/src/banks.json +58 -56
- data/src/ruby/bank.rb +6 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9eb5f47a3b6155e6811e3ec39961ec91f7eb6c9bc11f2adc82051e7ad24a65fc
|
4
|
+
data.tar.gz: 8def555fa4403818a7284091acf73fb7828543c60d9b85124aeadcec523afd61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f721a1721228f82d9368148fee57e8056e329e0f2e8f47f469228544decabcfaee3a7d8df70a412cb056da8010621664e79211a5a4ae837c8530650d15b1950b
|
7
|
+
data.tar.gz: 00efdee869fd0ed60ab15b1d4bc335aa2966ad5b27f50b739d83f75b729615767252e8f47a90c4ba27fca4d1c6786dd3b6325c0453e92327336335504ddbb444
|
data/CHANGELOG.md
CHANGED
@@ -5,8 +5,12 @@ 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.8][2.0.8]
|
9
|
+
### Changed
|
10
|
+
- Metadata updates
|
11
|
+
|
8
12
|
## [2.0.7][2.0.7]
|
9
|
-
|
13
|
+
### Changed
|
10
14
|
- Dependency Updates
|
11
15
|
- Updated metadata
|
12
16
|
- All constant files are now automatically generated
|
@@ -16,27 +20,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
16
20
|
- Support for Go 1.18
|
17
21
|
|
18
22
|
## [2.0.6][2.0.6]
|
19
|
-
|
23
|
+
### Changed
|
20
24
|
- Updated Metadata
|
21
25
|
|
22
26
|
## [2.0.5][2.0.5]
|
23
|
-
|
27
|
+
### Changed
|
24
28
|
- Updated Metadata
|
25
29
|
|
26
30
|
## [2.0.4][2.0.4]
|
27
|
-
|
31
|
+
### Changed
|
28
32
|
- Update IFSC.json for the below 20 IFSC codes
|
29
33
|
|
30
34
|
## [2.0.3][2.0.3]
|
31
|
-
|
35
|
+
### Changed
|
32
36
|
- Adds back 20 IFSC codes removed due to a change on the RBI sheet structure in 2.0.2
|
33
37
|
|
34
38
|
## [2.0.2][2.0.2]
|
35
|
-
|
39
|
+
### Changed
|
36
40
|
- Metadata changes
|
37
41
|
|
38
42
|
## [2.0.1][2.0.1]
|
39
|
-
|
43
|
+
### Changed
|
40
44
|
- Metadata changes
|
41
45
|
|
42
46
|
## [2.0.0][2.0.0]
|
@@ -76,11 +80,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
76
80
|
- Improved support for Contact details that are sourced from RTGS dataset. CONTACT details are returned in E.164 format
|
77
81
|
|
78
82
|
## [1.5.11][1.5.11]
|
79
|
-
|
83
|
+
### Changed
|
80
84
|
- Metadata updates
|
81
85
|
|
82
86
|
## [1.5.10][1.5.10]
|
83
|
-
|
87
|
+
### Changed
|
84
88
|
- 2 new banks:
|
85
89
|
- ARBL: Arvind Sahakari Bank
|
86
90
|
- TNCB: Nawanagar Co-operative Bank
|
@@ -253,8 +257,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
253
257
|
|
254
258
|
- Removes some data formats (YAML/Large JSON) for cleaner code. If you were using them, please let create an issue.
|
255
259
|
|
256
|
-
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.
|
257
|
-
[2.0.
|
260
|
+
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.8...HEAD
|
261
|
+
[2.0.8]: https://github.com/razorpay/ifsc/releases/tag/2.0.8
|
262
|
+
[2.0.7]: https://github.com/razorpay/ifsc/releases/tag/2.0.7
|
258
263
|
[2.0.6]: https://github.com/razorpay/ifsc/releases/tag/2.0.6
|
259
264
|
[2.0.5]: https://github.com/razorpay/ifsc/releases/tag/2.0.5
|
260
265
|
[2.0.4]: https://github.com/razorpay/ifsc/releases/tag/2.0.4
|
data/README.md
CHANGED
@@ -4,9 +4,7 @@ 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
|
-
|
8
|
-
|
9
|
-
[](https://microbadger.com/images/razorpay/ifsc:2.0.7) [](https://badge.fury.io/js/ifsc) [](https://badge.fury.io/rb/ifsc) [](https://badge.fury.io/ph/razorpay%2Fifsc) [](https://hex.pm/packages/ifsc)
|
7
|
+
 [](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/ifsc) [](https://badge.fury.io/rb/ifsc) [](https://badge.fury.io/ph/razorpay%2Fifsc)
|
10
8
|
|
11
9
|
## Dataset
|
12
10
|
|
@@ -16,29 +14,41 @@ The latest `scraper` workflow on GitHub should publish a `release-artifact` as w
|
|
16
14
|
|
17
15
|
### Source
|
18
16
|
|
19
|
-
|
20
|
-
|
21
|
-
- List of NEFT IFSCs from [RBI website][combined]
|
22
|
-
- List of RTGS IFSCs from [RBI website][rtgs]
|
23
|
-
-
|
24
|
-
-
|
25
|
-
-
|
17
|
+
Various official sources are linked below, with the ones currently used marked with a †
|
18
|
+
|
19
|
+
- List of NEFT IFSCs from [RBI website][combined]†
|
20
|
+
- List of RTGS IFSCs from [RBI website][rtgs]†
|
21
|
+
- RBI maintains several lists:
|
22
|
+
- [List of banks in India](https://www.rbi.org.in/commonman/english/scripts/banksinindia.aspx)
|
23
|
+
- [Websites of banks in India](https://www.rbi.org.in/scripts/banklinks.aspx).
|
24
|
+
- [Bankwise Volumes in ECS/NEFT/RTGS/Mobile](https://www.rbi.org.in/Scripts/NEFTUserView.aspx?Id=166)
|
25
|
+
- [List of Banks permitted to provide Mobile Banking](https://www.rbi.org.in/Scripts/bs_viewcontent.aspx?Id=2463)
|
26
|
+
- NPCI website has several lists:
|
27
|
+
- [NACH Live Members][ach]†
|
28
|
+
- [RuPay Live Members](https://www.npci.org.in/what-we-do/rupay/live-members)
|
29
|
+
- [IMPS Live members](https://www.npci.org.in/what-we-do/imps/live-members)
|
30
|
+
- [Banks and Apps live on AutoPay](https://www.npci.org.in/what-we-do/autopay/list-of-banks-and-apps-live-on-autopay)
|
31
|
+
- [Sub member banks IFSC and MICR Codes](https://www.npci.org.in/PDF/npci/ifsc-and-micr-codes/Submember-banks-IFSC-and-MICR.xlsx)
|
32
|
+
- [Merged banks IFSC and MICR Codes](https://www.npci.org.in/PDF/npci/ifsc-and-micr-codes/Merged-banks-IFSC-and-MICR.xlsx)
|
33
|
+
- [Routing codes used in API E-Mandates](https://www.npci.org.in/PDF/nach/live-members-e-mandates/Routing%20codes%20to%20be%20used%20in%20API%20E-Mandates_11_7_19.pdf)
|
34
|
+
- [Merged Banks on NACH](https://www.npci.org.in/what-we-do/nach/live-members/merged-banks)
|
35
|
+
- [Blocked Banks on NACH](https://www.npci.org.in/what-we-do/nach/live-members/blocked-banks)
|
26
36
|
|
27
37
|
#### SWIFT
|
28
38
|
|
29
39
|
SWIFT/BIC codes are supported for a few banks.
|
30
40
|
|
31
41
|
##### SBI
|
32
|
-
- https://sbi.co.in/web/nri/quick-links/swift-codes
|
33
|
-
- https://sbi.co.in/documents/16012/263663/sbinri_merged_bran_swfcodet.xlsx
|
42
|
+
- https://sbi.co.in/web/nri/quick-links/swift-codes †
|
43
|
+
- https://sbi.co.in/documents/16012/263663/sbinri_merged_bran_swfcodet.xlsx †
|
34
44
|
- Branch codes from above are checked against the [SBI Branch Locator](https://www.sbi.co.in/web/home/locator/branch) to get the IFSC.
|
35
45
|
|
36
46
|
##### PNB
|
37
|
-
- https://pnbindia.com/downloadprocess.aspx?fid=Zb7ImdUNlz9Ge73qn1nXQg==
|
38
|
-
- https://www.pnbindia.in/document/PNB-helpdesk/bic_code.pdf
|
47
|
+
- https://pnbindia.com/downloadprocess.aspx?fid=Zb7ImdUNlz9Ge73qn1nXQg== †
|
48
|
+
- https://www.pnbindia.in/document/PNB-helpdesk/bic_code.pdf †
|
39
49
|
|
40
50
|
##### HDFC
|
41
|
-
- https://www.hdfcbank.com/nri-banking/correspondent-banks
|
51
|
+
- https://www.hdfcbank.com/nri-banking/correspondent-banks †
|
42
52
|
|
43
53
|
## Installation
|
44
54
|
|
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 = '2022-
|
6
|
+
s.version = '2.0.8'
|
7
|
+
s.date = '2022-06-15'
|
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']
|