ifsc 2.0.8 → 2.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9eb5f47a3b6155e6811e3ec39961ec91f7eb6c9bc11f2adc82051e7ad24a65fc
4
- data.tar.gz: 8def555fa4403818a7284091acf73fb7828543c60d9b85124aeadcec523afd61
3
+ metadata.gz: 407f881d03db3f1c1ad70b784cd659399ccd24768f18e2542278a22b727968ce
4
+ data.tar.gz: d1d27d2c7d6528409149abd8310e0132301f8913da1326dc3605ca6d5274d7b8
5
5
  SHA512:
6
- metadata.gz: f721a1721228f82d9368148fee57e8056e329e0f2e8f47f469228544decabcfaee3a7d8df70a412cb056da8010621664e79211a5a4ae837c8530650d15b1950b
7
- data.tar.gz: 00efdee869fd0ed60ab15b1d4bc335aa2966ad5b27f50b739d83f75b729615767252e8f47a90c4ba27fca4d1c6786dd3b6325c0453e92327336335504ddbb444
6
+ metadata.gz: 3354b4f3789501cbe28068eac873a8ab64fee4be431dc4b7f233010b14003fad0a9f8c5fffed37279e7c4a6d3df5ce19fe85f2aab2ea16b022f0630b0eb3e950
7
+ data.tar.gz: 29826b703bf1122a701f1a528c7ba67466bbdc2b751142803ea62f32da7383ab89d18a186589a62075373b8893f1df9f0dbfdef98bc692acc24759e666919635
data/CHANGELOG.md CHANGED
@@ -5,6 +5,36 @@ 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.9][2.0.9]
9
+ ### Changed
10
+ - Updates on list of UPI enabled banks
11
+ ```diff
12
+ +ABSB Abhinav Sahakari Bank
13
+ +AJKB Akola Janata Commercial Co-operative Bank
14
+ +APRR A.P. Raja Rajeswari Mahila Co-operative Urban Bank
15
+ +BDBX Bellary District Co-operative Central Bank
16
+ +BHCX Bhuj Commercial Co-operative Bank
17
+ +BMCB Bombay Mercantile Co-operative Bank
18
+ -CGBX Chhattisgarh Rajya Gramin Bank
19
+ +CRGB Chhattisgarh Rajya Gramin Bank
20
+ +FINX Financial Co-operative Bank
21
+ +GUNX Guntur Co-operative Urban Bank
22
+ +JONX Jodhpur Nagrik Sahakari Bank
23
+ +MCUX Mahaveer Co-operative Urban Bank
24
+ -MMMX Mahila Nagrik Sahakari Bank Maryadit Mahasamund
25
+ -MSOX Manorama Co-operative Bank Solapur
26
+ +MSSX Merchants Souharda Sahakara Bank Niyamitha
27
+ +SWSX Shree Warana Sahakari Bank
28
+ +TKTX Kottakkal Co-operative Urban Bank
29
+ +UCBX Urban Co-operative Bank Bareilly
30
+ +VADX Valsad District Central Co-operative Bank
31
+ +VASJ Vasai Janata Sahakari Bank
32
+ -VJSX Vasai Janata Sahakari Bank
33
+ +COMX Co-operative Bank of Mehsana
34
+ ```
35
+ - Metadata Updates
36
+ - Dependency Updates
37
+
8
38
  ## [2.0.8][2.0.8]
9
39
  ### Changed
10
40
  - Metadata updates
@@ -18,6 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
48
  - NPCI does not publish bank type any more, so these are now maintained in this repository as patches
19
49
  - Minor bank name updates
20
50
  - Support for Go 1.18
51
+ - New field added: `ISO3166` (`IN-XX`, as per the ISO-3166 specification).
21
52
 
22
53
  ## [2.0.6][2.0.6]
23
54
  ### Changed
@@ -257,7 +288,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
257
288
 
258
289
  - Removes some data formats (YAML/Large JSON) for cleaner code. If you were using them, please let create an issue.
259
290
 
260
- [unreleased]: https://github.com/razorpay/ifsc/compare/2.0.8...HEAD
291
+ [unreleased]: https://github.com/razorpay/ifsc/compare/2.0.9...HEAD
292
+ [2.0.9]: https://github.com/razorpay/ifsc/releases/tag/2.0.9
261
293
  [2.0.8]: https://github.com/razorpay/ifsc/releases/tag/2.0.8
262
294
  [2.0.7]: https://github.com/razorpay/ifsc/releases/tag/2.0.7
263
295
  [2.0.6]: https://github.com/razorpay/ifsc/releases/tag/2.0.6
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.8'
7
- s.date = '2022-06-15'
6
+ s.version = '2.0.9'
7
+ s.date = '2022-08-04'
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']