diff --git a/CHANGELOG.md b/CHANGELOG.md index 561ed99..5f4aae6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment: ## [Unreleased] + +## [2.7.0] - 2023-03-16 ### Added - updated, type and transaction_ids attribute to UtilityPayment resource - workspace_id attribute to Boleto resource diff --git a/Gemfile.lock b/Gemfile.lock index 9c759bb..f034951 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - starkbank (2.6.0) + starkbank (2.7.0) starkcore (~> 0.0.1) GEM diff --git a/README.md b/README.md index 5370e51..d07e062 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ gem install starkbank 1.2 Or just add this to your Gemfile: ```sh -gem('starkbank', '~> 2.6.0') +gem('starkbank', '~> 2.7.0') ``` ## 2. Create your Private and Public Keys diff --git a/lib/starkbank.rb b/lib/starkbank.rb index 294dab0..19c7735 100644 --- a/lib/starkbank.rb +++ b/lib/starkbank.rb @@ -43,7 +43,7 @@ module StarkBank API_VERSION = 'v2' - SDK_VERSION = '2.6.0' + SDK_VERSION = '2.7.0' HOST = "bank" public_constant :API_VERSION, :SDK_VERSION, :HOST; diff --git a/starkbank.gemspec b/starkbank.gemspec index f401b0e..222e449 100644 --- a/starkbank.gemspec +++ b/starkbank.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'starkbank' - s.version = '2.6.0' + s.version = '2.7.0' s.summary = 'SDK to facilitate Ruby integrations with Stark Bank' s.authors = 'starkbank' s.homepage = 'https://github.com/starkbank/sdk-ruby'