Skip to content

Commit 4c08142

Browse files
[release] 2.0.52
1 parent c708636 commit 4c08142

File tree

7 files changed

+11
-2
lines changed

7 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 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.51][2.0.51]
8+
### Changed
9+
- Metadata updates
10+
611
## [UNRELEASED][unreleased]
712
## [2.0.50][2.0.50]
813
### 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.50'
6+
s.version = '2.0.51'
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.50",
3+
"version": "2.0.51",
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/banknames.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,6 +1406,7 @@
14061406
"URDX": "Urban Co-operative Bank Budaun",
14071407
"URMX": "Urban Co-operative Bank Mainpuri",
14081408
"UROX": "Urban Co-operative Bank Rourkela",
1409+
"USCB": "UTTARAKHAND STATE COOPERATIVE BANK LIMITED",
14091410
"USFB": "Ujjivan Small Finance Bank",
14101411
"USNX": "Udham Singh Nagar District Co-operative Bank",
14111412
"UTBI": "United Bank of India",

src/node/bank.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1410,6 +1410,7 @@ module.exports = Object.freeze({
14101410
URDX: 'URDX',
14111411
URMX: 'URMX',
14121412
UROX: 'UROX',
1413+
USCB: 'USCB',
14131414
USFB: 'USFB',
14141415
USNX: 'USNX',
14151416
UTBI: 'UTBI',

src/php/Bank.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1416,6 +1416,7 @@ class Bank
14161416
const URDX = 'URDX';
14171417
const URMX = 'URMX';
14181418
const UROX = 'UROX';
1419+
const USCB = 'USCB';
14191420
const USFB = 'USFB';
14201421
const USNX = 'USNX';
14211422
const UTBI = 'UTBI';

src/ruby/bank.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1412,6 +1412,7 @@ module Bank
14121412
URDX = :URDX
14131413
URMX = :URMX
14141414
UROX = :UROX
1415+
USCB = :USCB
14151416
USFB = :USFB
14161417
USNX = :USNX
14171418
UTBI = :UTBI

0 commit comments

Comments
 (0)