diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cc27a6..55a4002 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [2.12.0] - 2024-07-20 ### Added - update function to Deposit resource - raw methods diff --git a/Gemfile.lock b/Gemfile.lock index 00bfac2..a3261de 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - starkbank (2.11.0) + starkbank (2.12.0) starkcore (~> 0.2.2) GEM diff --git a/README.md b/README.md index 25856fc..8f28419 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ gem install starkbank 1.2 Or just add this to your Gemfile: ```sh -gem('starkbank', '~> 2.11.0') +gem('starkbank', '~> 2.12.0') ``` ## 2. Create your Private and Public Keys diff --git a/lib/starkbank.rb b/lib/starkbank.rb index 4ab9841..3d99780 100644 --- a/lib/starkbank.rb +++ b/lib/starkbank.rb @@ -60,7 +60,7 @@ module StarkBank API_VERSION = 'v2' - SDK_VERSION = '2.11.0' + SDK_VERSION = '2.12.0' HOST = "bank" public_constant :API_VERSION, :SDK_VERSION, :HOST; diff --git a/starkbank.gemspec b/starkbank.gemspec index 1c82353..b1f0624 100644 --- a/starkbank.gemspec +++ b/starkbank.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'starkbank' - s.version = '2.11.0' + s.version = '2.12.0' s.summary = 'SDK to facilitate Ruby integrations with Stark Bank' s.authors = 'starkbank' s.homepage = 'https://github.com/starkbank/sdk-ruby'