Skip to content

Commit e0e7cc8

Browse files
Merge pull request #439 from razorpay/release/2.0.50
Release/2.0.50
2 parents 9800077 + 6e2afaa commit e0e7cc8

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [UNRELEASED][unreleased]
7+
## [2.0.50][2.0.50]
8+
### Changed
9+
- Metadata updates
10+
611
## [UNRELEASED][unreleased]
712
## [2.0.49][2.0.49]
813
### Changed
@@ -18,8 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1823
## [UNRELEASED][unreleased]
1924
## [2.0.47.1][2.0.47.1]
2025
### Changed
21-
- TGRB bank name udpate
22-
- IDIB000B668 and INDB0001960 contact update
26+
- TGRB bank name udpate
27+
- IDIB000B668 and INDB0001960 contact update
2328

2429
## [2.0.47][2.0.47]
2530
### Changed

ifsc.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33

44
Gem::Specification.new do |s|
55
s.name = 'ifsc'
6-
s.version = '2.0.49'
6+
s.version = '2.0.50'
77
s.date = '2022-10-28'
88
s.summary = 'IFSC code database to help you validate IFSC codes'
99
s.description = 'A simple gem by @razorpay to help you validate your IFSC codes. IFSC codes are bank codes within India'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ifsc",
3-
"version": "2.0.49",
3+
"version": "2.0.50",
44
"description": "This is part of the IFSC toolset released by Razorpay. You can find more details about the entire release at [ifsc.razorpay.com](https://ifsc.razorpay.com). Includes only a validation library as of now.",
55
"main": "src/node/index.js",
66
"directories": {

src/IFSC.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

tests/fixture/HDFC0CAGSBK.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"MICR":"560226263","BRANCH":"THE AGS EMPLOYEES COOP BANK LTD","ADDRESS":"SANGMESH BIRADAR BANGALORE","STATE":"KARNATAKA","CONTACT":"+91802265658","UPI":true,"RTGS":true,"CITY":"BANGALORE","CENTRE":"BANGALORE URBAN","DISTRICT":"BANGALORE URBAN","NEFT":true,"IMPS":true,"SWIFT":"HDFCINBB","ISO3166":"IN-KA","BANK":"HDFC Bank","BANKCODE":"HDFC","IFSC":"HDFC0CAGSBK"}
1+
{"BRANCH":"THE AGS EMPLOYEES COOP BANK LTD","ADDRESS":"SANGMESH BIRADAR BANGALORE","STATE":"KARNATAKA","MICR":null,"CONTACT":"+918022265658","UPI":true,"RTGS":true,"CITY":"BANGALORE","CENTRE":"BANGALORE","DISTRICT":"BANGALORE","NEFT":true,"IMPS":true,"SWIFT":"HDFCINBB","ISO3166":"IN-KA","BANK":"HDFC Bank","BANKCODE":"HDFC","IFSC":"HDFC0CAGSBK"}

tests/fixture/KKBK0000261.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"MICR":"110485003","BRANCH":"GURGAON","ADDRESS":"KOTAK MAHINDRA BANK LTD. UNIT NO. 8&9, SEWA CORPORATE PARK, MG ROAD, REVENUE STATE OF SARHAUL TEHSIL, DISTT,- GURGAON- 122001","STATE":"HARYANA","CONTACT":"4131000","UPI":true,"RTGS":true,"CITY":"GURGAON","CENTRE":"GURGAON","DISTRICT":"GURGAON","NEFT":true,"IMPS":true,"SWIFT":"","ISO3166":"IN-HR","BANK":"Kotak Mahindra Bank","BANKCODE":"KKBK","IFSC":"KKBK0000261"}
1+
{"ISO3166":"IN-HR","RTGS":true,"MICR":null,"CENTRE":"GURGAON","IMPS":true,"DISTRICT":"GURGAON","UPI":true,"ADDRESS":"KOTAK MAHINDRA BANK LTD. UNIT NO. 8&9, SEWA CORPORATE PARK, MG ROAD, REVENUE STATE OF SARHAUL TEHSIL, DISTT,- GURGAON- 122001","SWIFT":null,"CONTACT":"+9118602662666","CITY":"GURGAON","BRANCH":"GURGAON","STATE":"HARYANA","NEFT":true,"BANK":"Kotak Mahindra Bank","BANKCODE":"KKBK","IFSC":"KKBK0000261"}

tests/node/client_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ifsc
1616
assert.equal('GURGAON',res['DISTRICT'])
1717
assert.equal('KKBK0000261',res['IFSC'])
1818
assert.equal('HARYANA',res['STATE'])
19-
assert.equal('110485003',res['MICR'])
19+
assert.equal(null,res['MICR'])
2020
assert.equal(true,res['UPI'])
2121
assert.equal(true,res['NEFT'])
2222
assert.equal(true,res['IMPS'])

0 commit comments

Comments
 (0)