diff --git a/Gemfile b/Gemfile index e5dd6701..f392cf57 100644 --- a/Gemfile +++ b/Gemfile @@ -11,11 +11,7 @@ group :test do gem "rspec" gem "rspec-its" gem "simplecov" - if RUBY_VERSION >= "3.1" - gem "vcr", github: "vcr/vcr" # use head version for Ruby 3.1 compat - else - gem "vcr" - end + gem "vcr" gem "yard" gem "webmock" end diff --git a/Gemfile.lock b/Gemfile.lock index 02036028..bfd0b70c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,7 @@ -GIT - remote: https://github.com/vcr/vcr.git - revision: 8ced6c96e01737a418cd270e0382a8c2c6d85f7f - specs: - vcr (6.0.0) - PATH remote: base specs: - stellar-base (0.31.0) + stellar-base (0.32.0) activesupport (>= 5.0.0, < 8.0) base32 (>= 0.3.0, < 1.0) digest-crc (>= 0.5.0, < 1.0) @@ -17,21 +11,21 @@ PATH PATH remote: horizon specs: - stellar-horizon (0.31.0) + stellar-horizon (0.32.0) excon (>= 0.71.0, < 1.0) faraday (>= 1.6.0, < 2.0) faraday_middleware (>= 1.1.0, < 2.0) hyperclient (>= 0.7.0, < 2.0) - stellar-base (= 0.31.0) + stellar-base (= 0.32.0) PATH remote: sdk specs: - stellar-sdk (0.31.0) + stellar-sdk (0.32.0) activesupport (>= 5.0.0, < 8.0) faraday (>= 1.6.0, < 2.0) - stellar-base (= 0.31.0) - stellar-horizon (= 0.31.0) + stellar-base (= 0.32.0) + stellar-horizon (= 0.32.0) tomlrb (>= 2.0.1, < 3.0) GEM @@ -65,7 +59,7 @@ GEM digest-crc (0.6.4) rake (>= 12.0.0, < 14.0.0) docile (1.4.0) - excon (0.91.0) + excon (0.92.3) faraday (1.10.0) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) @@ -214,6 +208,7 @@ GEM tzinfo (2.0.4) concurrent-ruby (~> 1.0) unicode-display_width (2.1.0) + vcr (6.1.0) webmock (3.14.0) addressable (>= 2.8.0) crack (>= 0.3.2) @@ -258,7 +253,7 @@ DEPENDENCIES stellar-base! stellar-horizon! stellar-sdk! - vcr! + vcr webmock xdrgen yard diff --git a/base/CHANGELOG.md b/base/CHANGELOG.md index 443a6e8b..df746212 100644 --- a/base/CHANGELOG.md +++ b/base/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/). As this project is pre 1.0, breaking changes may happen for minor version bumps. A breaking change will get clearly notified in this log. +## [0.32.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.31.0...v0.32.0) (2022-05-17) + +### Added +* **protocol** support Stellar protocol 19 ([#265](https://github.com/astroband/ruby-stellar-sdk/issues/265)) ([fead030](https://github.com/astroband/ruby-stellar-sdk/commit/fead030fdf6159cc184d5337a0f6f14fa61de963)) + ## [0.31.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.30.0...v0.31.0) (2022-02-20) ### ⚠ BREAKING CHANGES diff --git a/base/lib/stellar/version.rb b/base/lib/stellar/version.rb index c9aaf5a6..adcc8db5 100644 --- a/base/lib/stellar/version.rb +++ b/base/lib/stellar/version.rb @@ -1,3 +1,3 @@ module Stellar - VERSION = "0.31.0".freeze + VERSION = "0.32.0".freeze end