Skip to content

Commit a541c8c

Browse files
committedJan 21, 2021
Update version to 2.4.0
1 parent 5522967 commit a541c8c

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment:
1313

1414

1515
## [Unreleased]
16+
17+
## [2.4.0] - 2021-01-21
1618
### Added
1719
- Transfer.account_type property to allow 'checking', 'salary' or 'savings' account specification
1820
- Transfer.external_id property to allow users to take control over duplication filters

‎Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
starkbank (2.3.0)
4+
starkbank (2.4.0)
55
starkbank-ecdsa (~> 0.0.5)
66

77
GEM

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ gem install starkbank
4141
1.2 Or just add this to your Gemfile:
4242

4343
```sh
44-
gem('starkbank', '~> 2.3.0')
44+
gem('starkbank', '~> 2.4.0')
4545
```
4646

4747
### 2. Create your Private and Public Keys

‎lib/utils/request.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def self.fetch(method:, path:, payload: nil, query: nil, user: nil)
6161
req['Access-Time'] = access_time
6262
req['Access-Signature'] = signature
6363
req['Content-Type'] = 'application/json'
64-
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-2.3.0"
64+
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-2.4.0"
6565
req['Accept-Language'] = language
6666

6767
request = Net::HTTP.start(uri.hostname, use_ssl: true) { |http| http.request(req) }

‎starkbank.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |s|
44
s.name = 'starkbank'
5-
s.version = '2.3.0'
5+
s.version = '2.4.0'
66
s.date = '2020-04-06'
77
s.summary = 'SDK to facilitate Ruby integrations with Stark Bank'
88
s.authors = 'starkbank'

0 commit comments

Comments
 (0)
Please sign in to comment.