Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Jun 5, 2020
1 parent 6290d6c commit d0c9652
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install:
- gem install bundler -v 1.17.3
- bundle install
- gem build starkbank.gemspec
- gem install starkbank-0.3.0.gem
- gem install starkbank-0.4.0.gem

script:
- rspec --format doc
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]

## [0.4.0] - 2020-06-05
### Added
- Travis CI integration
- Boleto PDF layout option
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', '~> 0.3.0')
gem('starkbank', '~> 0.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-0.3.0"
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-0.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 = '0.3.0'
s.version = '0.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 d0c9652

Please sign in to comment.