Skip to content

Commit

Permalink
Merge pull request #387 from razorpay/Release/2.0.35
Browse files Browse the repository at this point in the history
[release] 2.0.35
  • Loading branch information
PriyankaMarbill authored Oct 22, 2024
2 parents 5f5fd7a + 7b39a6c commit eac74f9
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED][unreleased]

## [2.0.35][2.0.35]
### Changed
- Metadata updates

## [2.0.34][2.0.34]
### Changed
- Metadata updates
Expand Down
2 changes: 1 addition & 1 deletion ifsc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |s|
s.name = 'ifsc'
s.version = '2.0.34'
s.version = '2.0.35'
s.date = '2022-10-28'
s.summary = 'IFSC code database to help you validate IFSC codes'
s.description = 'A simple gem by @razorpay to help you validate your IFSC codes. IFSC codes are bank codes within India'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ifsc",
"version": "2.0.34",
"version": "2.0.35",
"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.",
"main": "src/node/index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/IFSC.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/banknames.json
Original file line number Diff line number Diff line change
Expand Up @@ -1391,6 +1391,7 @@
"UMSX": "Udaipur Mahila Samridhi Urban Co-operative Bank",
"UMUX": "Umiya Urban Co-operative Bank",
"UNAX": "Una Peoples Co-operative Bank",
"UNBA": "Unity Small finance Bank Limited",
"UNIX": "United Co-operative Bank",
"UNMX": "United Mercantile Co-operative Bank",
"UNSX": "Unava Nagrik Sahakari Bank",
Expand Down
2 changes: 2 additions & 0 deletions src/go/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,7 @@ const (
UMSX = "UMSX"
UMUX = "UMUX"
UNAX = "UNAX"
UNBA = "UNBA"
UNIX = "UNIX"
UNMX = "UNMX"
UNSX = "UNSX"
Expand Down Expand Up @@ -2906,6 +2907,7 @@ var bankCodes = map[string]bool{
"UMSX" : true,
"UMUX" : true,
"UNAX" : true,
"UNBA" : true,
"UNIX" : true,
"UNMX" : true,
"UNSX" : true,
Expand Down
1 change: 1 addition & 0 deletions src/node/bank.js
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,7 @@ module.exports = Object.freeze({
UMSX: 'UMSX',
UMUX: 'UMUX',
UNAX: 'UNAX',
UNBA: 'UNBA',
UNIX: 'UNIX',
UNMX: 'UNMX',
UNSX: 'UNSX',
Expand Down
1 change: 1 addition & 0 deletions src/patches/banks/type-oucb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,7 @@ banks:
- UMSX
- UMUX
- UNAX
- UNBA
- UNIX
- UNMX
- UNSX
Expand Down
1 change: 1 addition & 0 deletions src/php/Bank.php
Original file line number Diff line number Diff line change
Expand Up @@ -1401,6 +1401,7 @@ class Bank
const UMSX = 'UMSX';
const UMUX = 'UMUX';
const UNAX = 'UNAX';
const UNBA = 'UNBA';
const UNIX = 'UNIX';
const UNMX = 'UNMX';
const UNSX = 'UNSX';
Expand Down
1 change: 1 addition & 0 deletions src/ruby/bank.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,7 @@ module Bank
UMSX = :UMSX
UMUX = :UMUX
UNAX = :UNAX
UNBA = :UNBA
UNIX = :UNIX
UNMX = :UNMX
UNSX = :UNSX
Expand Down

0 comments on commit eac74f9

Please sign in to comment.