From 78b517ca04312d3d8387134deb59ded716e7a485 Mon Sep 17 00:00:00 2001 From: shaojunda Date: Wed, 25 Nov 2020 14:07:49 +0800 Subject: [PATCH] chore: Bump version to v0.38.1 --- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 2 +- RELEASENOTES.md | 21 +++------------------ lib/ckb/version.rb | 2 +- 4 files changed, 15 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15e89951..7070995a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [v0.38.1](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.38.0...v0.38.1) (2020-11-25) + + +### Features + +* support generate short payload acp address ([092a89f](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/092a89f)) +* support parse short payload acp address ([f747a30](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/f747a30)) + + + # [v0.38.0](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.37.0...v0.38.0) (2020-11-23) Bump version to v0.38.0 diff --git a/Gemfile.lock b/Gemfile.lock index e44210ff..c0bf0860 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ckb-sdk-ruby (0.38.0) + ckb-sdk-ruby (0.38.1) bitcoin-secp256k1 (~> 0.5.2) net-http-persistent (~> 3.1.0) rbnacl (~> 7.1.1) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 86120f3f..94d3994b 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,22 +1,7 @@ -# [v0.37.0](https://github.com/shaojunda/ckb-sdk-ruby/compare/v0.36.0...v0.37.0) (2020-10-27) - - -### Code Refactoring - -* use ckb-indexer replace get_cells_by_lock_hash RPC ([2a62ce3](https://github.com/shaojunda/ckb-sdk-ruby/commit/2a62ce3)) +# [v0.38.1](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.38.0...v0.38.1) (2020-11-25) ### Features -* add ckb-indexer types and get_cells api ([92ca150](https://github.com/shaojunda/ckb-sdk-ruby/commit/92ca150)) -* add more types ([bfd881c](https://github.com/shaojunda/ckb-sdk-ruby/commit/bfd881c)) -* add new RPCs ([48626ca](https://github.com/shaojunda/ckb-sdk-ruby/commit/48626ca)) -* remove RPC get_cells_by_lock_hash ([a935a7c](https://github.com/shaojunda/ckb-sdk-ruby/commit/a935a7c)) - - -### BREAKING CHANGES - -* use ckb-indexer replace get_cells_by_lock_hash RPC on wallet and multi_sign_wallet -* remove RPC get_cells_by_lock_hash - - +* support generate short payload acp address ([092a89f](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/092a89f)) +* support parse short payload acp address ([f747a30](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/f747a30)) \ No newline at end of file diff --git a/lib/ckb/version.rb b/lib/ckb/version.rb index a32b385e..dce8d3bc 100644 --- a/lib/ckb/version.rb +++ b/lib/ckb/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CKB - VERSION = "0.38.0" + VERSION = "0.38.1" end