From 210550f00e30608f1cace3f4bae0f936f45d9d63 Mon Sep 17 00:00:00 2001 From: shaojunda Date: Thu, 6 May 2021 16:52:53 +0800 Subject: [PATCH] chore: Bump version to v0.41.0 --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 4 ++-- RELEASENOTES.md | 14 ++++---------- lib/ckb/version.rb | 2 +- 4 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c69b9af..9d90efa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# [v0.41.0](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.40.0...v0.41.0) (2021-05-06) + + +### Features + +* add generate_block_with_template RPC ([311a8d1](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/311a8d1)) +* implement get_cells_capacity api ([a4ade40](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/a4ade40)) +* support search key filter ([50d7ebb](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/50d7ebb)) + + + # [v0.40.0](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.39.0...v0.40.0) (2021-03-10) diff --git a/Gemfile.lock b/Gemfile.lock index c0b8178..5a5efd1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ckb-sdk-ruby (0.40.0) + ckb-sdk-ruby (0.41.0) bitcoin-secp256k1 (~> 0.5.2) net-http-persistent (~> 4.0.1) rbnacl (~> 7.1.1) @@ -13,7 +13,7 @@ GEM bitcoin-secp256k1 (0.5.2) ffi (>= 1.9.25) coderay (1.1.2) - connection_pool (2.2.3) + connection_pool (2.2.5) diff-lcs (1.3) ffi (1.15.0) jaro_winkler (1.5.2) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 890c09e..60163c9 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,14 +1,8 @@ -# [v0.40.0](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.39.0...v0.40.0) (2021-03-10) +# [v0.41.0](https://github.com/nervosnetwork/ckb-sdk-ruby/compare/v0.40.0...v0.41.0) (2021-05-06) ### Features -* add serialized_size_without_uncle_proposals ([43f5077](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/43f5077)) -* deprecate get_cellbase_output_capacity_details and get_peers_state RPC ([2475550](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/2475550)) - - -### Performance Improvements - -* byte32 serializer ([9574a5e](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/9574a5e)) -* bytes serializer ([9193fc9](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/9193fc9)) -* output data serializer ([5c8e82e](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/5c8e82e)) +* add generate_block_with_template RPC ([311a8d1](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/311a8d1)) +* implement get_cells_capacity api ([a4ade40](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/a4ade40)) +* support search key filter ([50d7ebb](https://github.com/nervosnetwork/ckb-sdk-ruby/commit/50d7ebb)) diff --git a/lib/ckb/version.rb b/lib/ckb/version.rb index f6cb87f..0dbaa16 100644 --- a/lib/ckb/version.rb +++ b/lib/ckb/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module CKB - VERSION = "0.40.0" + VERSION = "0.41.0" end