diff --git a/CHANGELOG.md b/CHANGELOG.md index 4748dab..4435687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [2.9.0] - 2023-05-04 ### Added - CorporateBalance resource - CorporateCard resource diff --git a/Gemfile.lock b/Gemfile.lock index efda831..fae6cca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - starkbank (2.8.0) + starkbank (2.9.0) starkcore (~> 0.0.1) GEM diff --git a/README.md b/README.md index 714f0a1..065fb64 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ gem install starkbank 1.2 Or just add this to your Gemfile: ```sh -gem('starkbank', '~> 2.8.0') +gem('starkbank', '~> 2.9.0') ``` ## 2. Create your Private and Public Keys diff --git a/lib/starkbank.rb b/lib/starkbank.rb index efc2fe1..595a08c 100644 --- a/lib/starkbank.rb +++ b/lib/starkbank.rb @@ -58,7 +58,7 @@ module StarkBank API_VERSION = 'v2' - SDK_VERSION = '2.8.0' + SDK_VERSION = '2.9.0' HOST = "bank" public_constant :API_VERSION, :SDK_VERSION, :HOST; diff --git a/starkbank.gemspec b/starkbank.gemspec index 76d4314..8f4406a 100644 --- a/starkbank.gemspec +++ b/starkbank.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'starkbank' - s.version = '2.8.0' + s.version = '2.9.0' s.summary = 'SDK to facilitate Ruby integrations with Stark Bank' s.authors = 'starkbank' s.homepage = 'https://github.com/starkbank/sdk-ruby'