Skip to content

Commit

Permalink
version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Jun 23, 2020
1 parent dc54928 commit 9734229
Show file tree
Hide file tree
Showing 5 changed files with 7 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.4.0.gem
- gem install starkbank-0.4.1.gem

script:
- rspec --format doc
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Given a version number MAJOR.MINOR.PATCH, increment:


## [Unreleased]
## [0.4.1] - 2020-06-22
### Fixed
- starkbank-ecdsa dependency

## [0.4.0] - 2020-06-05
### Added
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.4.0')
gem('starkbank', '~> 0.4.1')
```

### 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.4.0"
req['User-Agent'] = "Ruby-#{RUBY_VERSION}-SDK-0.4.1"
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.4.0'
s.version = '0.4.1'
s.date = '2020-04-06'
s.summary = 'SDK to facilitate Ruby integrations with Stark Bank'
s.authors = 'starkbank'
Expand Down

0 comments on commit 9734229

Please sign in to comment.