From f6e43ee347a012ebcbdd7c36933fa99aafeba956 Mon Sep 17 00:00:00 2001 From: George Mitenkov Date: Tue, 13 Aug 2024 10:29:52 -0700 Subject: [PATCH] [cli] Bump to 4.0.0 (#14255) --- Cargo.lock | 2 +- crates/aptos/CHANGELOG.md | 3 +++ crates/aptos/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74eb145f06b8a..ba2732adb89be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -262,7 +262,7 @@ dependencies = [ [[package]] name = "aptos" -version = "3.5.1" +version = "4.0.0" dependencies = [ "anyhow", "aptos-api-types", diff --git a/crates/aptos/CHANGELOG.md b/crates/aptos/CHANGELOG.md index 365a5aa962479..c129286e6974e 100644 --- a/crates/aptos/CHANGELOG.md +++ b/crates/aptos/CHANGELOG.md @@ -3,9 +3,12 @@ All notable changes to the Aptos CLI will be captured in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and the format set out by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## Unreleased + +## [4.0.0] - 2024/08/13 - **Breaking Change**: change key rotation options such that user has to either pass the name of a new profile or explicitly flag that no profile should be generated, since without this update the interactive profile generator could fail out after the key has already been rotated. This forces the check for new profile validity before doing anything onchain. - Add support for key rotation to/from Ledger hardware wallets. - Fixes a bug in the Move Prover leading to internal error in generated boogie (error 'global `#0_info` cannot be accessed') +- **Breaking Change**: A new native function to compute serialized size of a Move value is now supported. ## [3.5.1] - 2024/07/21 - Upgraded indexer processors for localnet from 5244b84fa5ed872e5280dc8df032d744d62ad29d to fa1ce4947f4c2be57529f1c9732529e05a06cb7f. Upgraded Hasura metadata accordingly. diff --git a/crates/aptos/Cargo.toml b/crates/aptos/Cargo.toml index a1acc0499683c..891f3c2724fde 100644 --- a/crates/aptos/Cargo.toml +++ b/crates/aptos/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aptos" description = "Aptos tool for management of nodes and interacting with the blockchain" -version = "3.5.1" +version = "4.0.0" # Workspace inherited keys authors = { workspace = true }