chore: release master (#725)

* chore: release master

* chore: Bump air-interpreter and air-near-contract version to 0.54.0

* Update minimal version to 0.54.0

---------

Co-authored-by: Ivan Boldyrev <ivan@fluence.one>
This commit is contained in:
fluencebot
2023-10-26 16:56:52 +03:00
committed by GitHub
parent 635352bc5d
commit 9bac51f24e
29 changed files with 203 additions and 62 deletions

View File

@ -102,6 +102,21 @@
* aquavm-air bumped from 0.52.0 to 0.53.0
* air-test-utils bumped from 0.11.1 to 0.12.0
## [0.5.3](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.5.2...aquavm-air-cli-v0.5.3) (2023-10-26)
### Bug Fixes
* **deps:** update rust crate fluence-keypair to 0.10.3 ([#620](https://github.com/fluencelabs/aquavm/issues/620)) ([88e7dba](https://github.com/fluencelabs/aquavm/commit/88e7dba5f2ed6cf930f9bae52ad6dee7fa9e4ed0))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.53.0 to 0.54.0
* air-test-utils bumped from 0.12.0 to 0.12.1
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.4.7...aquavm-air-cli-v0.5.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air-cli"
version = "0.5.2"
version = "0.5.3"
edition = "2021"
description = "AIR execution and printing tool"
authors = ["Fluence Labs"]
@ -10,12 +10,12 @@ documentation = "https://docs.rs/aquavm-air-cli"
keywords = ["fluence", "air", "tracing"]
[dependencies]
aquavm-air = { version = "0.53.0", path = "../../../air" }
aquavm-air = { version = "0.54.0", path = "../../../air" }
air-beautifier = { version = "0.3.1", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.7.2", path = "../../../crates/data-store" }
avm-interface = { version = "0.29.2", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.15.1", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.12.0",path = "../../../crates/air-lib/test-utils", optional = true }
air-test-utils = { version = "0.12.1",path = "../../../crates/air-lib/test-utils", optional = true }
anyhow = "1.0.75"
clap = { version = "4.4.6", features = ["derive", "env"] }