Skip to content

Commit

Permalink
Update version to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Jan 21, 2021
1 parent 5522967 commit a541c8c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment:


## [Unreleased]

## [2.4.0] - 2021-01-21
### Added
- Transfer.account_type property to allow 'checking', 'salary' or 'savings' account specification
- Transfer.external_id property to allow users to take control over duplication filters
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
starkbank (2.3.0)
starkbank (2.4.0)
starkbank-ecdsa (~> 0.0.5)

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ gem install starkbank
1.2 Or just add this to your Gemfile:

```sh
gem('starkbank', '~> 2.3.0')
gem('starkbank', '~> 2.4.0')
```

### 2. Create your Private and Public Keys
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def self.fetch(method:, path:, payload: nil, query: nil, user: nil)
req['Access-Time'] = access_time
req['Access-Signature'] = signature
req['Content-Type'] = 'application/json'
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-2.3.0"
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-2.4.0"
req['Accept-Language'] = language

request = Net::HTTP.start(uri.hostname, use_ssl: true) { |http| http.request(req) }
Expand Down
2 changes: 1 addition & 1 deletion starkbank.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'starkbank'
s.version = '2.3.0'
s.version = '2.4.0'
s.date = '2020-04-06'
s.summary = 'SDK to facilitate Ruby integrations with Stark Bank'
s.authors = 'starkbank'
Expand Down

0 comments on commit a541c8c

Please sign in to comment.