ifsc 2.0.9 → 2.0.10
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 -1
- data/ifsc.gemspec +3 -3
- data/src/IFSC.json +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71a880e92cf4ae7b56f3247fc967c09039b8f6d9376ddca37a7bac36e18fd6ea
|
4
|
+
data.tar.gz: 01de4564f8bdc138a719fb4be88fe8c3ced5d252eb0729f9bf483a6da8a7280b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43d7f6ace082b32d4c225326738d1b61a77da0cdd8c245b5311d95819b10f931126e7b2beed9b65949b4e9eaa8ae5ee48c5072eeba929de19589a551f5b278a0
|
7
|
+
data.tar.gz: adeb21f3e627904914c59d31ca6758b285512d2578a18350217a90a9ba29d884628d97d98cca418674e7f92559ee8ca3287c367a3d4050bcac60cc087fc84529
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,11 @@ 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.10][2.0.10]
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
- Metadata Updates
|
12
|
+
|
8
13
|
## [2.0.9][2.0.9]
|
9
14
|
### Changed
|
10
15
|
- Updates on list of UPI enabled banks
|
@@ -288,7 +293,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
288
293
|
|
289
294
|
- Removes some data formats (YAML/Large JSON) for cleaner code. If you were using them, please let create an issue.
|
290
295
|
|
291
|
-
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.
|
296
|
+
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.10...HEAD
|
297
|
+
[2.0.10]: https://github.com/razorpay/ifsc/releases/tag/2.0.10
|
292
298
|
[2.0.9]: https://github.com/razorpay/ifsc/releases/tag/2.0.9
|
293
299
|
[2.0.8]: https://github.com/razorpay/ifsc/releases/tag/2.0.8
|
294
300
|
[2.0.7]: https://github.com/razorpay/ifsc/releases/tag/2.0.7
|
data/ifsc.gemspec
CHANGED
@@ -3,11 +3,11 @@ $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-08-
|
6
|
+
s.version = '2.0.10'
|
7
|
+
s.date = '2022-08-10'
|
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
|
-
s.authors = ['Abhay Rana'
|
10
|
+
s.authors = ['Abhay Rana']
|
11
11
|
s.email = ['contact@razorpay.com']
|
12
12
|
s.files = ['Gemfile', 'ifsc.gemspec'] + `git ls-files src/*.json src/ruby tests/ruby/* tests/*.json *.md`.split("\n")
|
13
13
|
|