Skip to content

Commit d175324

Browse files
authored
chore: release 0.30.0 (#224)
1 parent 3cd93dc commit d175324

File tree

5 files changed

+37
-9
lines changed

5 files changed

+37
-9
lines changed

Gemfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: base
33
specs:
4-
stellar-base (0.29.0)
4+
stellar-base (0.30.0)
55
activesupport (>= 5.0.0, < 7.0)
66
base32 (>= 0.3.0, < 1.0)
77
digest-crc (>= 0.5.0, < 1.0)
@@ -11,21 +11,21 @@ PATH
1111
PATH
1212
remote: horizon
1313
specs:
14-
stellar-horizon (0.29.0)
14+
stellar-horizon (0.30.0)
1515
excon (>= 0.71.0, < 1.0)
1616
faraday (>= 1.6.0, < 2.0)
1717
faraday_middleware (>= 1.1.0, < 2.0)
1818
hyperclient (>= 0.7.0, < 2.0)
19-
stellar-base (= 0.29.0)
19+
stellar-base (= 0.30.0)
2020

2121
PATH
2222
remote: sdk
2323
specs:
24-
stellar-sdk (0.29.0)
24+
stellar-sdk (0.30.0)
2525
activesupport (>= 5.0.0, < 7.0)
2626
faraday (>= 1.6.0, < 2.0)
27-
stellar-base (= 0.29.0)
28-
stellar-horizon (= 0.29.0)
27+
stellar-base (= 0.30.0)
28+
stellar-horizon (= 0.30.0)
2929
tomlrb (>= 2.0.1, < 3.0)
3030

3131
GEM
@@ -59,7 +59,7 @@ GEM
5959
digest-crc (0.6.4)
6060
rake (>= 12.0.0, < 14.0.0)
6161
docile (1.4.0)
62-
excon (0.86.0)
62+
excon (0.87.0)
6363
faraday (1.8.0)
6464
faraday-em_http (~> 1.0)
6565
faraday-em_synchrony (~> 1.0)

base/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ 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.30.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.29.0...v0.30.0) (2021-10-14)
11+
12+
### Added
13+
* **protocol** support Stellar protocol 18 ([#202](https://www.github.com/astroband/ruby-stellar-sdk/issues/202)) ([3cd93dc](https://github.com/astroband/ruby-stellar-sdk/commit/3cd93dc107ab84b8d3abb10a63a6dca0887f9a4d))
14+
### Changed
15+
* `Stellar::Amount` class moved to `stellar-base` gem from `stellar-sdk`
16+
* `Stellar::Horizon::Problem` class moved to `stellar-horizon` gem
17+
* `toml-rb` gem is replaced with `tomlrb` gem to work around [segfaults in Ruby 3.0](https://github.com/mjackson/citrus/issues/60)
18+
1019
## [0.29.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.28.0...v0.29.0) (2021-09-07)
1120
- No changes
1221

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.29.0".freeze
2+
VERSION = "0.30.0".freeze
33
end

horizon/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,16 @@ 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.29.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.28.0...v0.29.0) (2021-09-07)
10+
## [0.30.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.29.0...v0.30.0) (2021-10-14)
11+
### Added
12+
* `Stellar::Horizon::Problem` class moved to `stellar-horizon` gem from `stellar-sdk`
13+
* `Stellar::TransactionPage` from `stellar-sdk` is now `Stellar::Horizon::TransactionPage` in `stellar-horizon` gem
14+
* `faraday` and `faraday_middleware` are now direct dependencies
15+
16+
### Changed
17+
* `stellar-horizon` no longer depends on `stellar-sdk` (dependency has been reversed)
18+
19+
## [0.29.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.28.0...v0.29.0) (2021-09-07)
1120

1221
### Added
1322
* Initial setup of the gem, copying all Horizon-related features from `sdk` gem

sdk/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.30.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.29.0...v0.30.0) (2021-10-14)
9+
10+
### Added
11+
* `stellar-sdk` now depends on `stellar-horizon`
12+
### Changed
13+
* `Stellar::Amount` class moved to `stellar-base` gem
14+
* `Stellar::Horizon::Problem` class moved to `stellar-horizon` gem
15+
* `Stellar::TransactionPage` is now `Stellar::Horizon::TransactionPage` in `stellar-horizon` gem
16+
* `toml-rb` gem is replaced with `tomlrb` gem to work around [segfaults in Ruby 3.0](https://github.com/mjackson/citrus/issues/60)
17+
818
## [0.29.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.28.0...v0.29.0) (2021-09-07)
919

1020
### Added

0 commit comments

Comments
 (0)