Skip to content

Commit

Permalink
Merge pull request #258 from razorpay/release/2.0.3
Browse files Browse the repository at this point in the history
Release/2.0.3
  • Loading branch information
Nemo authored Nov 17, 2021
2 parents 8d6a5bd + 2068ad2 commit 7ec0217
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 27 deletions.
7 changes: 6 additions & 1 deletion 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.3][2.0.3]
## Changed
- Adds back 20 IFSC codes removed due to a change on the RBI sheet structure in 2.0.2

## [2.0.2][2.0.2]
## Changed
- Metadata changes
Expand Down Expand Up @@ -227,7 +231,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Removes some data formats (YAML/Large JSON) for cleaner code. If you were using them, please let create an issue.

[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.2...HEAD
[unreleased]: https://github.com/razorpay/ifsc/compare/2.0.3...HEAD
[2.0.3]: https://github.com/razorpay/ifsc/releases/tag/2.0.3
[2.0.2]: https://github.com/razorpay/ifsc/releases/tag/2.0.2
[2.0.1]: https://github.com/razorpay/ifsc/releases/tag/2.0.1
[2.0.0]: https://github.com/razorpay/ifsc/releases/tag/2.0.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ 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).

[![](https://images.microbadger.com/badges/image/razorpay/ifsc:2.0.2.svg)](https://microbadger.com/images/razorpay/ifsc:2.0.2) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![](https://images.microbadger.com/badges/image/razorpay/ifsc:2.0.3.svg)](https://microbadger.com/images/razorpay/ifsc:2.0.3) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)

[![](https://images.microbadger.com/badges/version/razorpay/ifsc:2.0.2.svg)](https://microbadger.com/images/razorpay/ifsc:2.0.2) [![npm version](https://badge.fury.io/js/ifsc.svg)](https://badge.fury.io/js/ifsc) [![Gem Version](https://badge.fury.io/rb/ifsc.svg)](https://badge.fury.io/rb/ifsc) [![PHP version](https://badge.fury.io/ph/razorpay%2Fifsc.svg)](https://badge.fury.io/ph/razorpay%2Fifsc) [![Hex pm](http://img.shields.io/hexpm/v/ifsc.svg)](https://hex.pm/packages/ifsc)
[![](https://images.microbadger.com/badges/version/razorpay/ifsc:2.0.3.svg)](https://microbadger.com/images/razorpay/ifsc:2.0.3) [![npm version](https://badge.fury.io/js/ifsc.svg)](https://badge.fury.io/js/ifsc) [![Gem Version](https://badge.fury.io/rb/ifsc.svg)](https://badge.fury.io/rb/ifsc) [![PHP version](https://badge.fury.io/ph/razorpay%2Fifsc.svg)](https://badge.fury.io/ph/razorpay%2Fifsc) [![Hex pm](http://img.shields.io/hexpm/v/ifsc.svg)](https://hex.pm/packages/ifsc)

## Dataset

Expand Down
4 changes: 2 additions & 2 deletions ifsc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |s|
s.name = 'ifsc'
s.version = '2.0.2'
s.date = '2021-11-16'
s.version = '2.0.3'
s.date = '2021-11-17'
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'
s.authors = ['Abhay Rana', 'Nihal Gonsalves']
Expand Down
40 changes: 20 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.2",
"version": "2.0.3",
"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 scraper/scripts/generate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
log "[NPCI] Got #{imps.keys.size} entries"

# The first sheet on RTGS gives summary numbers, which we ignore
rtgs = parse_csv(['RTGS-1', 'RTGS-2'], banks, {"RTGS"=> true})
rtgs = parse_csv(['RTGS-1', 'RTGS-2', 'RTGS-3'], banks, {"RTGS"=> true})
log "[RTGS] Got #{rtgs.keys.size} entries"

neft = parse_csv(['NEFT-0', 'NEFT-1'], banks, {"NEFT"=> true})
Expand Down

0 comments on commit 7ec0217

Please sign in to comment.