From 6b610f4fc36098662dd0742ecc16687b8b535bb3 Mon Sep 17 00:00:00 2001 From: Greg Nazario Date: Fri, 14 Apr 2023 00:57:00 -0700 Subject: [PATCH] [cli] Release 1.0.11 fix --- Cargo.lock | 2 +- crates/aptos/CHANGELOG.md | 4 ++-- crates/aptos/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 028e42a0e90aa..65d00ae3d9fce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -140,7 +140,7 @@ dependencies = [ [[package]] name = "aptos" -version = "1.0.10" +version = "1.0.11" dependencies = [ "anyhow", "aptos-backup-cli", diff --git a/crates/aptos/CHANGELOG.md b/crates/aptos/CHANGELOG.md index f384e5e227dcc..d26f0a65eda01 100644 --- a/crates/aptos/CHANGELOG.md +++ b/crates/aptos/CHANGELOG.md @@ -2,11 +2,11 @@ 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 +## [1.0.11] - 2023/04/14 ### Fixed * Fixed creating a new test account with `aptos init` would fail if the account didn't already exist -## [1.0.10] +## [1.0.10] - 2023/04/13 ### Fixed * If `aptos init` is run with a faucet URL specified (which happens by default when using the local, devnet, or testnet network options) and funding the account fails, the account creation is considered a failure and nothing is persisted. Previously it would report success despite the account not being created on chain. * When specifying a profile where the `AuthenticationKey` has been rotated, now the `AccountAddress` is properly used from the config file diff --git a/crates/aptos/Cargo.toml b/crates/aptos/Cargo.toml index b1f7cb6f735a7..d154a5ac9f5b3 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 = "1.0.10" +version = "1.0.11" # Workspace inherited keys authors = { workspace = true }