From dbcc6c9f731fd030f91cdeed8dbf9a9f11420441 Mon Sep 17 00:00:00 2001 From: Karan Dhareshwar Date: Mon, 15 May 2023 08:19:54 -0500 Subject: [PATCH 1/2] Version bump to 1.6.0 --- CHANGELOG.md | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 826012c7..d8ba9195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ All notable changes to this project will be documented in this file. The format -## [Unreleased] +## [1.6.0] - 2023-05-15 ### Add * Added a new subcommand `get-era-summary` which optionally takes a block identifier and returns an era summary from a Casper network. @@ -164,7 +164,8 @@ No changes. [Keep a Changelog]: https://keepachangelog.com/en/1.0.0 -[unreleased]: https://github.com/casper-ecosystem/casper-client-rs/compare/v1.5.1...main +[unreleased]: https://github.com/casper-ecosystem/casper-client-rs/compare/v1.6.0...main +[1.6.0]: https://github.com/casper-ecosystem/casper-client-rs/compare/v1.5.1...v1.6.0 [1.5.1]: https://github.com/casper-ecosystem/casper-client-rs/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/casper-ecosystem/casper-client-rs/compare/v1.4.4...v1.5.0 [1.4.4]: https://github.com/casper-ecosystem/casper-client-rs/compare/v1.4.3...v1.4.4 diff --git a/Cargo.toml b/Cargo.toml index 813cf68b..5511e7d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casper-client" -version = "1.5.1" # when updating, also update 'html_root_url' in lib.rs +version = "1.6.0" # when updating, also update 'html_root_url' in lib.rs authors = ["Marc Brinkmann ", "Fraser Hutchison "] edition = "2018" description = "A client library and binary for interacting with the Casper network" From 03ae543b20b5d90910a4203b5e5820dcf0ee80be Mon Sep 17 00:00:00 2001 From: Karan Dhareshwar Date: Mon, 15 May 2023 08:30:15 -0500 Subject: [PATCH 2/2] Update lib.rs --- lib/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib.rs b/lib/lib.rs index 17af2998..d4f0f81e 100644 --- a/lib/lib.rs +++ b/lib/lib.rs @@ -1,6 +1,6 @@ //! # Casper node client library #![doc( - html_root_url = "https://docs.rs/casper-client/1.5.1", + html_root_url = "https://docs.rs/casper-client/1.6.0", html_favicon_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Favicon_RGB_50px.png", html_logo_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Symbol_RGB.png", test(attr(forbid(warnings)))