diff --git a/CHANGELOG.md b/CHANGELOG.md index b20e1d4..bd6875a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [2.10.0] - 2023-05-12 ### Added - purpose and schedule attributes to CorporateRule resource - description attribute to CorporatePurchase::Log resource diff --git a/Gemfile.lock b/Gemfile.lock index fae6cca..fbd629b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - starkbank (2.9.0) + starkbank (2.10.0) starkcore (~> 0.0.1) GEM diff --git a/README.md b/README.md index 065fb64..514757c 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.9.0') +gem('starkbank', '~> 2.10.0') ``` ## 2. Create your Private and Public Keys diff --git a/lib/starkbank.rb b/lib/starkbank.rb index bb5c7af..0b0c810 100644 --- a/lib/starkbank.rb +++ b/lib/starkbank.rb @@ -59,7 +59,7 @@ module StarkBank API_VERSION = 'v2' - SDK_VERSION = '2.9.0' + SDK_VERSION = '2.10.0' HOST = "bank" public_constant :API_VERSION, :SDK_VERSION, :HOST; diff --git a/starkbank.gemspec b/starkbank.gemspec index 8f4406a..2225c12 100644 --- a/starkbank.gemspec +++ b/starkbank.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'starkbank' - s.version = '2.9.0' + s.version = '2.10.0' s.summary = 'SDK to facilitate Ruby integrations with Stark Bank' s.authors = 'starkbank' s.homepage = 'https://github.com/starkbank/sdk-ruby'