Skip to content

Commit 254d022

Browse files
authored
chore: release 0.32.0 (#272)
1 parent fead030 commit 254d022

File tree

4 files changed

+16
-20
lines changed

4 files changed

+16
-20
lines changed

Gemfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ group :test do
1111
gem "rspec"
1212
gem "rspec-its"
1313
gem "simplecov"
14-
if RUBY_VERSION >= "3.1"
15-
gem "vcr", github: "vcr/vcr" # use head version for Ruby 3.1 compat
16-
else
17-
gem "vcr"
18-
end
14+
gem "vcr"
1915
gem "yard"
2016
gem "webmock"
2117
end

Gemfile.lock

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
GIT
2-
remote: https://github.com/vcr/vcr.git
3-
revision: 8ced6c96e01737a418cd270e0382a8c2c6d85f7f
4-
specs:
5-
vcr (6.0.0)
6-
71
PATH
82
remote: base
93
specs:
10-
stellar-base (0.31.0)
4+
stellar-base (0.32.0)
115
activesupport (>= 5.0.0, < 8.0)
126
base32 (>= 0.3.0, < 1.0)
137
digest-crc (>= 0.5.0, < 1.0)
@@ -17,21 +11,21 @@ PATH
1711
PATH
1812
remote: horizon
1913
specs:
20-
stellar-horizon (0.31.0)
14+
stellar-horizon (0.32.0)
2115
excon (>= 0.71.0, < 1.0)
2216
faraday (>= 1.6.0, < 2.0)
2317
faraday_middleware (>= 1.1.0, < 2.0)
2418
hyperclient (>= 0.7.0, < 2.0)
25-
stellar-base (= 0.31.0)
19+
stellar-base (= 0.32.0)
2620

2721
PATH
2822
remote: sdk
2923
specs:
30-
stellar-sdk (0.31.0)
24+
stellar-sdk (0.32.0)
3125
activesupport (>= 5.0.0, < 8.0)
3226
faraday (>= 1.6.0, < 2.0)
33-
stellar-base (= 0.31.0)
34-
stellar-horizon (= 0.31.0)
27+
stellar-base (= 0.32.0)
28+
stellar-horizon (= 0.32.0)
3529
tomlrb (>= 2.0.1, < 3.0)
3630

3731
GEM
@@ -65,7 +59,7 @@ GEM
6559
digest-crc (0.6.4)
6660
rake (>= 12.0.0, < 14.0.0)
6761
docile (1.4.0)
68-
excon (0.91.0)
62+
excon (0.92.3)
6963
faraday (1.10.0)
7064
faraday-em_http (~> 1.0)
7165
faraday-em_synchrony (~> 1.0)
@@ -214,6 +208,7 @@ GEM
214208
tzinfo (2.0.4)
215209
concurrent-ruby (~> 1.0)
216210
unicode-display_width (2.1.0)
211+
vcr (6.1.0)
217212
webmock (3.14.0)
218213
addressable (>= 2.8.0)
219214
crack (>= 0.3.2)
@@ -258,7 +253,7 @@ DEPENDENCIES
258253
stellar-base!
259254
stellar-horizon!
260255
stellar-sdk!
261-
vcr!
256+
vcr
262257
webmock
263258
xdrgen
264259
yard

base/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
As this project is pre 1.0, breaking changes may happen for minor version
88
bumps. A breaking change will get clearly notified in this log.
99

10+
## [0.32.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.31.0...v0.32.0) (2022-05-17)
11+
12+
### Added
13+
* **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))
14+
1015
## [0.31.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.30.0...v0.31.0) (2022-02-20)
1116

1217
### ⚠ BREAKING CHANGES

base/lib/stellar/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Stellar
2-
VERSION = "0.31.0".freeze
2+
VERSION = "0.32.0".freeze
33
end

0 commit comments

Comments
 (0)