From 59da04269d7cb909eec5c0825760f12341179384 Mon Sep 17 00:00:00 2001 From: Fraser Hutchison Date: Wed, 29 Dec 2021 17:53:28 +0000 Subject: [PATCH] version bumps --- Cargo.lock | 8 ++--- execution_engine/CHANGELOG.md | 7 ++++ execution_engine/Cargo.toml | 6 ++-- execution_engine/src/lib.rs | 2 +- .../cargo_casper/src/common.rs | 1 + .../test_support/Cargo.toml | 6 ++-- hashing/Cargo.toml | 2 +- hashing/src/lib.rs | 2 +- node/CHANGELOG.md | 10 ++++++ node/Cargo.toml | 8 ++--- node/src/components/rpc_server/rpcs/docs.rs | 2 +- node/src/lib.rs | 2 +- resources/production/chainspec.toml | 2 +- resources/test/rpc_schema_hashing_V1.json | 32 +++++++++---------- resources/test/rpc_schema_hashing_V2.json | 32 +++++++++---------- smart_contracts/contract/Cargo.toml | 2 +- types/CHANGELOG.md | 4 +++ types/Cargo.toml | 2 +- types/src/lib.rs | 2 +- 19 files changed, 77 insertions(+), 55 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ae380734c..6facc151cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -475,7 +475,7 @@ dependencies = [ [[package]] name = "casper-execution-engine" -version = "1.4.3" +version = "1.4.4" dependencies = [ "anyhow", "assert_matches", @@ -518,7 +518,7 @@ dependencies = [ [[package]] name = "casper-hashing" -version = "1.4.2" +version = "1.4.3" dependencies = [ "assert_matches", "base16", @@ -540,7 +540,7 @@ dependencies = [ [[package]] name = "casper-node" -version = "1.4.3" +version = "1.4.4" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -649,7 +649,7 @@ dependencies = [ [[package]] name = "casper-types" -version = "1.4.5" +version = "1.4.6" dependencies = [ "base16", "base64", diff --git a/execution_engine/CHANGELOG.md b/execution_engine/CHANGELOG.md index 3daeb2cdeb..3074c9203c 100644 --- a/execution_engine/CHANGELOG.md +++ b/execution_engine/CHANGELOG.md @@ -15,6 +15,13 @@ All notable changes to this project will be documented in this file. The format +## 1.4.4 - 2021-12-29 + +### Changed +* No longer checksum-hex encode hash digest and address types. + + + ## 1.4.3 - 2021-12-06 ### Changed diff --git a/execution_engine/Cargo.toml b/execution_engine/Cargo.toml index 988cf6fe98..7e6cf6bf67 100644 --- a/execution_engine/Cargo.toml +++ b/execution_engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casper-execution-engine" -version = "1.4.3" # when updating, also update 'html_root_url' in lib.rs +version = "1.4.4" # when updating, also update 'html_root_url' in lib.rs authors = ["Henry Till ", "Ed Hastings "] edition = "2018" description = "CasperLabs execution engine crates." @@ -14,8 +14,8 @@ license-file = "../LICENSE" anyhow = "1.0.33" base16 = "0.2.1" bincode = "1.3.1" -casper-hashing = { version = "1.4.2", path = "../hashing" } -casper-types = { version = "1.4.5", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema"] } +casper-hashing = { version = "1.4.3", path = "../hashing" } +casper-types = { version = "1.4.6", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema"] } chrono = "0.4.10" datasize = "0.2.4" hex-buffer-serde = "0.2.1" diff --git a/execution_engine/src/lib.rs b/execution_engine/src/lib.rs index c2aa4cfbf2..a51fab34df 100644 --- a/execution_engine/src/lib.rs +++ b/execution_engine/src/lib.rs @@ -1,6 +1,6 @@ //! The engine which executes smart contracts on the Casper network. -#![doc(html_root_url = "https://docs.rs/casper-execution-engine/1.4.3")] +#![doc(html_root_url = "https://docs.rs/casper-execution-engine/1.4.4")] #![doc( 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", diff --git a/execution_engine_testing/cargo_casper/src/common.rs b/execution_engine_testing/cargo_casper/src/common.rs index 446dd3664b..8c34077df3 100644 --- a/execution_engine_testing/cargo_casper/src/common.rs +++ b/execution_engine_testing/cargo_casper/src/common.rs @@ -110,6 +110,7 @@ pub mod tests { check_package_version(&*CL_CONTRACT, CL_CONTRACT_TOML_PATH); } + #[ignore] #[test] fn check_cl_types_version() { check_package_version(&*CL_TYPES, CL_TYPES_TOML_PATH); diff --git a/execution_engine_testing/test_support/Cargo.toml b/execution_engine_testing/test_support/Cargo.toml index d04912de67..440da9fb0c 100644 --- a/execution_engine_testing/test_support/Cargo.toml +++ b/execution_engine_testing/test_support/Cargo.toml @@ -11,9 +11,9 @@ repository = "https://github.com/CasperLabs/casper-node/tree/master/execution_en license-file = "../../LICENSE" [dependencies] -casper-execution-engine = { version = "1.4.3", path = "../../execution_engine", features = ["test-support"] } -casper-hashing = { version = "1.4.2", path = "../../hashing" } -casper-types = { version = "1.4.5", path = "../../types" } +casper-execution-engine = { version = "1.4.4", path = "../../execution_engine", features = ["test-support"] } +casper-hashing = { version = "1.4.3", path = "../../hashing" } +casper-types = { version = "1.4.6", path = "../../types" } lmdb = "0.8.0" log = "0.4.14" num-rational = "0.4.0" diff --git a/hashing/Cargo.toml b/hashing/Cargo.toml index 73a287683d..3fa9b295e4 100644 --- a/hashing/Cargo.toml +++ b/hashing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casper-hashing" -version = "1.4.2" +version = "1.4.3" edition = "2018" description = "A library providing hashing functionality including Merkle Proof utilities." readme = "README.md" diff --git a/hashing/src/lib.rs b/hashing/src/lib.rs index 87f21ff7af..fd1e6743f3 100644 --- a/hashing/src/lib.rs +++ b/hashing/src/lib.rs @@ -1,6 +1,6 @@ //! A library providing hashing functionality including Merkle Proof utilities. -#![doc(html_root_url = "https://docs.rs/casper-hashing/1.4.2")] +#![doc(html_root_url = "https://docs.rs/casper-hashing/1.4.3")] #![doc( 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", diff --git a/node/CHANGELOG.md b/node/CHANGELOG.md index 60b2fe4d5b..4c111f7e2f 100644 --- a/node/CHANGELOG.md +++ b/node/CHANGELOG.md @@ -14,6 +14,16 @@ All notable changes to this project will be documented in this file. The format +## 1.4.4 - 2021-12-29 + +### Added +* Add `contract_runtime_latest_commit_step` gauge metric indicating the execution duration of the latest `commit_step` call. + +### Changed +* No longer checksum-hex encode various types. + + + ## 1.4.3 - 2021-12-06 ### Changed diff --git a/node/Cargo.toml b/node/Cargo.toml index 5fe3db38e2..6094025e52 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casper-node" -version = "1.4.3" # when updating, also update 'html_root_url' in lib.rs +version = "1.4.4" # when updating, also update 'html_root_url' in lib.rs authors = ["Marc Brinkmann ", "Fraser Hutchison "] edition = "2018" description = "The Casper blockchain node" @@ -20,10 +20,10 @@ base16 = "0.2.1" base64 = "0.13.0" bincode = "1" bytes = "1.0.1" -casper-execution-engine = { version = "1.4.3", path = "../execution_engine" } +casper-execution-engine = { version = "1.4.4", path = "../execution_engine" } casper-node-macros = { version = "1.4.2", path = "../node_macros" } -casper-hashing = { version = "1.4.2", path = "../hashing" } -casper-types = { version = "1.4.5", path = "../types", features = ["datasize", "gens", "json-schema"] } +casper-hashing = { version = "1.4.3", path = "../hashing" } +casper-types = { version = "1.4.6", path = "../types", features = ["datasize", "gens", "json-schema"] } chrono = "0.4.10" datasize = { version = "0.2.9", features = ["detailed", "fake_clock-types", "futures-types", "smallvec-types"] } derive_more = "0.99.7" diff --git a/node/src/components/rpc_server/rpcs/docs.rs b/node/src/components/rpc_server/rpcs/docs.rs index a5ded19df0..418816d7d0 100644 --- a/node/src/components/rpc_server/rpcs/docs.rs +++ b/node/src/components/rpc_server/rpcs/docs.rs @@ -36,7 +36,7 @@ use crate::{ }; pub(crate) const DOCS_EXAMPLE_PROTOCOL_VERSION: ProtocolVersion = - ProtocolVersion::from_parts(1, 4, 3); + ProtocolVersion::from_parts(1, 4, 4); const DEFINITIONS_PATH: &str = "#/components/schemas/"; diff --git a/node/src/lib.rs b/node/src/lib.rs index 88b87cfb0a..ba865252a4 100644 --- a/node/src/lib.rs +++ b/node/src/lib.rs @@ -8,7 +8,7 @@ //! While the [`main`](fn.main.html) function is the central entrypoint for the node application, //! its core event loop is found inside the [reactor](reactor/index.html). -#![doc(html_root_url = "https://docs.rs/casper-node/1.4.3")] +#![doc(html_root_url = "https://docs.rs/casper-node/1.4.4")] #![doc( 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", diff --git a/resources/production/chainspec.toml b/resources/production/chainspec.toml index b1006dfe2a..6077e85bd2 100644 --- a/resources/production/chainspec.toml +++ b/resources/production/chainspec.toml @@ -1,6 +1,6 @@ [protocol] # Protocol version. -version = '1.4.3' +version = '1.4.4' # Whether we need to clear latest blocks back to the switch block just before the activation point or not. hard_reset = true # This protocol version becomes active at this point. diff --git a/resources/test/rpc_schema_hashing_V1.json b/resources/test/rpc_schema_hashing_V1.json index 6a972b80e5..bd49f4b6f1 100644 --- a/resources/test/rpc_schema_hashing_V1.json +++ b/resources/test/rpc_schema_hashing_V1.json @@ -2717,7 +2717,7 @@ "url": "https://raw.githubusercontent.com/CasperLabs/casper-node/master/LICENSE" }, "title": "Client API of Casper Node", - "version": "1.4.3" + "version": "1.4.4" }, "methods": [ { @@ -2782,7 +2782,7 @@ "result": { "name": "account_put_deploy_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "deploy_hash": "5c9b3b099c1378aa8e4a5f07f59ff1fcdc69a83179427c7e67ae0377d94d93fa" } } @@ -2836,7 +2836,7 @@ "result": { "name": "info_get_deploy_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "deploy": { "approvals": [ { @@ -3006,7 +3006,7 @@ "main_purse": "uref-09480c3248ef76b603d386f3f4f8a5f87f597d4eaffd475433f861af187ab5db-007", "named_keys": [] }, - "api_version": "1.4.3", + "api_version": "1.4.4", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3" } } @@ -3089,7 +3089,7 @@ "result": { "name": "state_get_dictionary_item_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "dictionary_key": "dictionary-67518854aa916c97d4e53df8570c8217ccc259da2721b692102d76acd0ee8d1f", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3", "stored_value": { @@ -3179,7 +3179,7 @@ "result": { "name": "query_global_state_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "block_header": { "accumulated_seed": "ac979f51525cfd979b14aa7dc0737c5154eabe0db9280eceaa8dc8d2905b20d5", "body_hash": "cd502c5393a3c8b66d6979ad7857507c9baf5a8ba16ba99c28378d3a970fff42", @@ -3322,7 +3322,7 @@ "result": { "name": "info_get_peers_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "peers": [ { "address": "127.0.0.1:54321", @@ -3367,7 +3367,7 @@ "result": { "name": "info_get_status_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "build_version": "1.0.0-xxxxxxxxx@DEBUG", "chainspec_name": "casper-example", "last_added_block_info": { @@ -3494,7 +3494,7 @@ "result": { "name": "info_get_validator_changes_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "changes": [ { "public_key": "01d9bf2148748a85c89da5aad8ee0b0fc2d105fd39d41a4c796536354f0ae2900c", @@ -3554,7 +3554,7 @@ "result": { "name": "chain_get_block_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "block": { "body": { "deploy_hashes": [], @@ -3672,7 +3672,7 @@ "result": { "name": "chain_get_block_transfers_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "block_hash": "13c2d7a68ecdd4b74bf4393c88915c836c863fc4bf11d7f2bd930a1bbccacdcb", "transfers": [ { @@ -3756,7 +3756,7 @@ "result": { "name": "chain_get_state_root_hash_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "state_root_hash": "0808080808080808080808080808080808080808080808080808080808080808" } } @@ -3826,7 +3826,7 @@ "result": { "name": "state_get_item_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3", "stored_value": { "CLValue": { @@ -3916,7 +3916,7 @@ "result": { "name": "state_get_balance_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "balance_value": "123456", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3" } @@ -3986,7 +3986,7 @@ "result": { "name": "chain_get_era_info_by_switch_block_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "era_summary": { "block_hash": "13c2d7a68ecdd4b74bf4393c88915c836c863fc4bf11d7f2bd930a1bbccacdcb", "era_id": 42, @@ -4072,7 +4072,7 @@ "result": { "name": "state_get_auction_info_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "auction_state": { "bids": [ { diff --git a/resources/test/rpc_schema_hashing_V2.json b/resources/test/rpc_schema_hashing_V2.json index 563e2404f8..a15cda388f 100644 --- a/resources/test/rpc_schema_hashing_V2.json +++ b/resources/test/rpc_schema_hashing_V2.json @@ -2717,7 +2717,7 @@ "url": "https://raw.githubusercontent.com/CasperLabs/casper-node/master/LICENSE" }, "title": "Client API of Casper Node", - "version": "1.4.3" + "version": "1.4.4" }, "methods": [ { @@ -2782,7 +2782,7 @@ "result": { "name": "account_put_deploy_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "deploy_hash": "5c9b3b099c1378aa8e4a5f07f59ff1fcdc69a83179427c7e67ae0377d94d93fa" } } @@ -2836,7 +2836,7 @@ "result": { "name": "info_get_deploy_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "deploy": { "approvals": [ { @@ -3006,7 +3006,7 @@ "main_purse": "uref-09480c3248ef76b603d386f3f4f8a5f87f597d4eaffd475433f861af187ab5db-007", "named_keys": [] }, - "api_version": "1.4.3", + "api_version": "1.4.4", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3" } } @@ -3089,7 +3089,7 @@ "result": { "name": "state_get_dictionary_item_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "dictionary_key": "dictionary-67518854aa916c97d4e53df8570c8217ccc259da2721b692102d76acd0ee8d1f", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3", "stored_value": { @@ -3179,7 +3179,7 @@ "result": { "name": "query_global_state_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "block_header": { "accumulated_seed": "ac979f51525cfd979b14aa7dc0737c5154eabe0db9280eceaa8dc8d2905b20d5", "body_hash": "8472b18539dc204cf7cb0520bb5c3a91c1551a5c258189a61a15d3a2a35f1763", @@ -3322,7 +3322,7 @@ "result": { "name": "info_get_peers_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "peers": [ { "address": "127.0.0.1:54321", @@ -3367,7 +3367,7 @@ "result": { "name": "info_get_status_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "build_version": "1.0.0-xxxxxxxxx@DEBUG", "chainspec_name": "casper-example", "last_added_block_info": { @@ -3494,7 +3494,7 @@ "result": { "name": "info_get_validator_changes_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "changes": [ { "public_key": "01d9bf2148748a85c89da5aad8ee0b0fc2d105fd39d41a4c796536354f0ae2900c", @@ -3554,7 +3554,7 @@ "result": { "name": "chain_get_block_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "block": { "body": { "deploy_hashes": [ @@ -3672,7 +3672,7 @@ "result": { "name": "chain_get_block_transfers_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "block_hash": "6b5db3585233ed0076910d3a81fa7d23fc4325f35e06d31f293043aef3f4c98d", "transfers": [ { @@ -3756,7 +3756,7 @@ "result": { "name": "chain_get_state_root_hash_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "state_root_hash": "0808080808080808080808080808080808080808080808080808080808080808" } } @@ -3826,7 +3826,7 @@ "result": { "name": "state_get_item_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3", "stored_value": { "CLValue": { @@ -3916,7 +3916,7 @@ "result": { "name": "state_get_balance_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "balance_value": "123456", "merkle_proof": "01000000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625016ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a72536147614625000000003529cde5c621f857f75f3810611eb4af3f998caaa9d4a3413cf799f99c67db0307010000006ef2e0949ac76e55812421f755abe129b6244fe7168b77f47a7253614761462501010102000000006e06000000000074769d28aac597a36a03a932d4b43e4f10bf0403ee5c41dd035102553f5773631200b9e173e8f05361b681513c14e25e3138639eb03232581db7557c9e8dbbc83ce94500226a9a7fe4f2b7b88d5103a4fc7400f02bf89c860c9ccdd56951a2afe9be0e0267006d820fb5676eb2960e15722f7725f3f8f41030078f8b2e44bf0dc03f71b176d6e800dc5ae9805068c5be6da1a90b2528ee85db0609cc0fb4bd60bbd559f497a98b67f500e1e3e846592f4918234647fca39830b7e1e6ad6f5b7a99b39af823d82ba1873d000003000000010186ff500f287e9b53f823ae1582b1fa429dfede28015125fd233a31ca04d5012002015cc42669a55467a1fdf49750772bfc1aed59b9b085558eb81510e9b015a7c83b0301e3cf4a34b1db6bfa58808b686cb8fe21ebe0c1bcbcee522649d2b135fe510fe3" } @@ -3986,7 +3986,7 @@ "result": { "name": "chain_get_era_info_by_switch_block_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "era_summary": { "block_hash": "6b5db3585233ed0076910d3a81fa7d23fc4325f35e06d31f293043aef3f4c98d", "era_id": 42, @@ -4072,7 +4072,7 @@ "result": { "name": "state_get_auction_info_example_result", "value": { - "api_version": "1.4.3", + "api_version": "1.4.4", "auction_state": { "bids": [ { diff --git a/smart_contracts/contract/Cargo.toml b/smart_contracts/contract/Cargo.toml index 885e53fdde..3e96bb1249 100644 --- a/smart_contracts/contract/Cargo.toml +++ b/smart_contracts/contract/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/CasperLabs/casper-node/tree/master/smart_contra license-file = "../../LICENSE" [dependencies] -casper-types = { version = "1.4.5", path = "../../types" } +casper-types = { version = "1.4.6", path = "../../types" } hex_fmt = "0.3.0" version-sync = { version = "0.9", optional = true } wee_alloc = { version = "0.4.5", optional = true } diff --git a/types/CHANGELOG.md b/types/CHANGELOG.md index 894b3b428d..b21bcf1fa6 100644 --- a/types/CHANGELOG.md +++ b/types/CHANGELOG.md @@ -13,6 +13,10 @@ All notable changes to this project will be documented in this file. The format ## [Unreleased] + + +## 1.4.6 - 2021-12-29 + ### Changed * Disable checksummed-hex encoding, but leave checksummed-hex decoding in place. diff --git a/types/Cargo.toml b/types/Cargo.toml index 4499c55324..c6a27fc6c4 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "casper-types" -version = "1.4.5" # when updating, also update 'html_root_url' in lib.rs +version = "1.4.6" # when updating, also update 'html_root_url' in lib.rs authors = ["Fraser Hutchison "] edition = "2018" description = "Types shared by many casper crates for use on the Casper network." diff --git a/types/src/lib.rs b/types/src/lib.rs index 0a34b16865..1b2e0b8585 100644 --- a/types/src/lib.rs +++ b/types/src/lib.rs @@ -4,7 +4,7 @@ not(any(feature = "json-schema", feature = "datasize", feature = "gens", test)), no_std )] -#![doc(html_root_url = "https://docs.rs/casper-types/1.4.5")] +#![doc(html_root_url = "https://docs.rs/casper-types/1.4.6")] #![doc( 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",