Skip to content

Commit d1ab7b8

Browse files
chore(main): release 0.31.0 (#253)
1 parent c161d16 commit d1ab7b8

File tree

10 files changed

+53
-38
lines changed

10 files changed

+53
-38
lines changed

.github/.release-please-manifest.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/release-please-config.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{
22
"bootstrap-sha": "571cb1b71ac32484321041b64507edcd926fc4cb",
3-
"bump-minor-pre-major": true,
43
"release-type": "ruby",
4+
"bump-minor-pre-major": true,
5+
"bump-patch-for-minor-pre-major": true,
56
"packages": {
67
"base": {
78
"package-name": "stellar-base",
89
"version-file": "lib/stellar/base/version.rb"
910
},
1011
"horizon": {
11-
"package-name": "stellar-horizon",
12-
"version-file": ""
12+
"package-name": "stellar-horizon"
1313
},
1414
"sdk": {
15-
"package-name": "stellar-sdk",
16-
"version-file": "lib/stellar/sdk/version.rb"
15+
"package-name": "stellar-sdk"
1716
}
1817
}
1918
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"base": "0.30.0",
3+
"horizon": "0.30.0",
4+
"sdk": "0.30.0"
5+
}

.github/workflows/release-please.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: release-please
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ release ]
66
workflow_dispatch:
77

88
jobs:
@@ -12,6 +12,5 @@ jobs:
1212
- id: release
1313
uses: google-github-actions/release-please-action@v3.1
1414
with:
15-
release-type: ruby
16-
bump-minor-pre-major: true
17-
version-file: "base/lib/stellar/version.rb"
15+
config-file: .github/release-please-config.json
16+
manifest-file: .github/release-please-manifest.json

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
22

33
* `stellar-base` changelog: [base/CHANGELOG.md](https://github.com/astroband/ruby-stellar-sdk/blob/main/base/CHANGELOG.md)
4+
* `stellar-horizon` changelog: [horizon/CHANGELOG.md](https://github.com/astroband/ruby-stellar-sdk/blob/main/horizon/CHANGELOG.md)
45
* `stellar-sdk` changelog: [sdk/CHANGELOG.md](https://github.com/astroband/ruby-stellar-sdk/blob/main/sdk/CHANGELOG.md)
5-
* `stellar-horizon` changelog: [sdk/CHANGELOG.md](https://github.com/astroband/ruby-stellar-sdk/blob/main/horizon/CHANGELOG.md)

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GIT
77
PATH
88
remote: base
99
specs:
10-
stellar-base (0.30.0)
10+
stellar-base (0.31.0)
1111
activesupport (>= 5.0.0, < 8.0)
1212
base32 (>= 0.3.0, < 1.0)
1313
digest-crc (>= 0.5.0, < 1.0)
@@ -17,21 +17,21 @@ PATH
1717
PATH
1818
remote: horizon
1919
specs:
20-
stellar-horizon (0.30.0)
20+
stellar-horizon (0.31.0)
2121
excon (>= 0.71.0, < 1.0)
2222
faraday (>= 1.6.0, < 2.0)
2323
faraday_middleware (>= 1.1.0, < 2.0)
2424
hyperclient (>= 0.7.0, < 2.0)
25-
stellar-base (= 0.30.0)
25+
stellar-base (= 0.31.0)
2626

2727
PATH
2828
remote: sdk
2929
specs:
30-
stellar-sdk (0.30.0)
30+
stellar-sdk (0.31.0)
3131
activesupport (>= 5.0.0, < 8.0)
3232
faraday (>= 1.6.0, < 2.0)
33-
stellar-base (= 0.30.0)
34-
stellar-horizon (= 0.30.0)
33+
stellar-base (= 0.31.0)
34+
stellar-horizon (= 0.31.0)
3535
tomlrb (>= 2.0.1, < 3.0)
3636

3737
GEM

base/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ 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.31.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.30.0...v0.31.0) (2022-02-20)
11+
12+
### ⚠ BREAKING CHANGES
13+
* unconditionally use muxed accounts in tx builder (#250)
14+
15+
### Features
16+
* unconditionally use muxed accounts in tx builder ([#250](https://github.com/astroband/ruby-stellar-sdk/issues/250)) ([8537fa7](https://github.com/astroband/ruby-stellar-sdk/commit/8537fa7a0520816c895a5cec93b7c27de86de172))
17+
18+
### Bug Fixes
19+
* correctly serialize manage data op with empty value ([#258](https://github.com/astroband/ruby-stellar-sdk/issues/258)) ([dea0bac](https://github.com/astroband/ruby-stellar-sdk/commit/dea0bac129fc7e886c0ef42cd5eff5c3e150917f))
20+
1021
## [0.30.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.29.0...v0.30.0) (2021-10-14)
1122

1223
### Added

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

horizon/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ 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.31.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.30.0...v0.31.0) (2022-02-20)
11+
* No changes
12+
1013
## [0.30.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.29.0...v0.30.0) (2021-10-14)
1114
### Added
1215
* `Stellar::Horizon::Problem` class moved to `stellar-horizon` gem from `stellar-sdk`

sdk/CHANGELOG.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,30 @@ 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)
8+
## [0.31.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.30.0...v0.31.0) (2022-02-20)
9+
### Features
10+
- `Stellar::SEP10` uses 5 minutes grace period for challenge tx ([#256](https://github.com/astroband/ruby-stellar-sdk/issues/256)) ([0d02663](https://github.com/astroband/ruby-stellar-sdk/commit/0d02663ff41a878f5c4d373f31988313e6ee4f46))
911

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)
12+
## [0.30.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.29.0...v0.30.0) (2021-10-14)
13+
### Features
14+
- `stellar-sdk` now depends on `stellar-horizon`
15+
### Refactoring
16+
- `Stellar::Amount` class moved to `stellar-base` gem
17+
- `Stellar::Horizon::Problem` class moved to `stellar-horizon` gem
18+
- `Stellar::TransactionPage` is now `Stellar::Horizon::TransactionPage` in `stellar-horizon` gem
19+
- `toml-rb` gem is replaced with `tomlrb` gem to work around [segfaults in Ruby 3.0](https://github.com/mjackson/citrus/issues/60)
1720

1821
## [0.29.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.28.0...v0.29.0) (2021-09-07)
19-
20-
### Added
21-
* support for client domain in SEP-10
22-
### Deprecated
23-
* `Stellar::Client` class is marked as deprecated in favour of new `stellar-horizon` gem
22+
### Deprecations
23+
- `Stellar::Client` class is marked as deprecated in favour of new `stellar-horizon` gem
24+
### Features
25+
- support for client domain in SEP-10
2426

2527
## [0.28.0](https://www.github.com/astroband/ruby-stellar-sdk/compare/v0.27.0...v0.28.0) (2021-07-17)
26-
27-
### Changed
28-
* `Stellar::Account` class is now part of `stellar-base` gem
29-
* `Stellar::Account.lookup` is deprecated, use `Stellar::Federation.lookup` instead
28+
### Deprecations
29+
- `Stellar::Account.lookup` is deprecated, use `Stellar::Federation.lookup` instead
30+
### Refactoring
31+
- `Stellar::Account` class is now part of `stellar-base` gem
3032

3133
## [0.27.0](https://github.com/astroband/ruby-stellar-sdk/compare/v0.26.0...v0.27.0) (2021-05-08)
3234
- No changes

0 commit comments

Comments
 (0)