Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release] 2.0.35 #387

Merged
merged 9 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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/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
Loading