Skip to content

Commit 22db288

Browse files
committedJul 30, 2021
Update version to 2.5.0
1 parent 926a3d9 commit 22db288

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎CHANGELOG.md

+2-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.5.0] - 2021-07-30
1618
### Added
1719
- "payment" account type for Pix related resources
1820
- missing parameters to Boleto, BrcodePayment, Deposit, DictKey, Event, Invoice, Transfer and Workspace resources
@@ -25,11 +27,9 @@ Given a version number MAJOR.MINOR.PATCH, increment:
2527
- Institution resource to allow query of institutions recognized by the Brazilian Central Bank for Pix and TED transactions
2628
- TaxPayment resource
2729
- DarfPayment resource
28-
2930
### Fixed
3031
- special characters in brcodePreview query
3132

32-
3333
## [2.4.0] - 2021-01-21
3434
### Added
3535
- Transfer.account_type property to allow 'checking', 'salary' or 'savings' account specification

‎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.4.0)
4+
starkbank (2.5.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.4.0')
44+
gem('starkbank', '~> 2.5.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.4.0"
64+
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-2.5.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.4.0'
5+
s.version = '2.5.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.