Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLI] Bump CLI version to 2.0.0 #8416

Merged
merged 2 commits into from
Jun 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 6 additions & 8 deletions crates/aptos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Aptos CLI Changelog

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/).
## [1.0.14] - 2023/05/26
### Added
- Add nested vector arg support
- Updated DB bootstrap command with new DB restore features

## [1.0.14] - 2023/05/25

## [2.0.0] - Current
### Added
- Recursive nested vector parsing
- Multisig v2 governance support
- JSON support for both input files and CLI argument input
- JSON input file support

## [1.0.14] - 2023/05/26
- Updated DB bootstrap command with new DB restore features
- Nested vector arg support
- **Breaking change**: You can no longer pass in a vector like this: `--arg vector<address>:0x1,0x2`, you must do it like this: `--arg 'address:["0x1", "0x2"]'`

## [1.0.13] - 2023/04/27
Expand Down
2 changes: 1 addition & 1 deletion crates/aptos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aptos"
description = "Aptos tool for management of nodes and interacting with the blockchain"
version = "1.0.14"
version = "2.0.0"

# Workspace inherited keys
authors = { workspace = true }
Expand Down