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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with 203 additions and 62 deletions

View File

@ -1,26 +1,26 @@
{
"air": "0.53.0",
"air-interpreter": "0.53.0",
"air": "0.54.0",
"air-interpreter": "0.54.0",
"avm/interface": "0.29.2",
"avm/server": "0.33.2",
"avm/client": "0.53.0",
"avm/server": "0.33.3",
"avm/client": "0.54.0",
"crates/air-lib/air-parser": "0.10.0",
"crates/air-lib/execution-info-collector": "0.7.10",
"crates/air-lib/interpreter-cid": "0.5.0",
"crates/air-lib/interpreter-data": "0.13.0",
"crates/air-lib/test-utils": "0.12.0",
"crates/air-lib/trace-handler": "0.5.6",
"crates/air-lib/interpreter-cid": "0.6.0",
"crates/air-lib/interpreter-data": "0.14.0",
"crates/air-lib/test-utils": "0.12.1",
"crates/air-lib/trace-handler": "0.5.7",
"crates/air-lib/utils": "0.2.0",
"crates/beautifier": "0.3.1",
"crates/data-store": "0.7.2",
"crates/testing-framework": "0.7.2",
"crates/testing-framework": "0.7.3",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.5",
"tools/cli/air": "0.5.2",
"tools/cli/air": "0.5.3",
"crates/air-lib/lambda/ast": "0.1.0",
"crates/air-lib/lambda/parser": "0.1.0",
"crates/air-lib/log-targets": "0.1.0",
"crates/air-lib/interpreter-interface": "0.15.1",
"crates/air-lib/interpreter-signatures": "0.1.3",
"crates/air-lib/interpreter-signatures": "0.1.4",
"crates/air-lib/polyplets": "0.5.1"
}

20
Cargo.lock generated
View File

@ -78,7 +78,7 @@ dependencies = [
[[package]]
name = "air-interpreter"
version = "0.53.0"
version = "0.54.0"
dependencies = [
"air-interpreter-interface",
"air-log-targets",
@ -94,7 +94,7 @@ dependencies = [
[[package]]
name = "air-interpreter-cid"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"blake3",
"cid",
@ -106,7 +106,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"air-interpreter-cid",
"air-interpreter-signatures",
@ -136,7 +136,7 @@ dependencies = [
[[package]]
name = "air-interpreter-signatures"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"air-interpreter-cid",
"borsh 0.10.3",
@ -174,7 +174,7 @@ version = "0.1.0"
[[package]]
name = "air-test-utils"
version = "0.12.0"
version = "0.12.1"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -197,7 +197,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.7.2"
version = "0.7.3"
dependencies = [
"air-interpreter-signatures",
"air-test-utils",
@ -214,7 +214,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.5.6"
version = "0.5.7"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -325,7 +325,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "aquavm-air"
version = "0.53.0"
version = "0.54.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -367,7 +367,7 @@ dependencies = [
[[package]]
name = "aquavm-air-cli"
version = "0.5.2"
version = "0.5.3"
dependencies = [
"air-beautifier",
"air-interpreter-interface",
@ -590,7 +590,7 @@ dependencies = [
[[package]]
name = "avm-server"
version = "0.33.2"
version = "0.33.3"
dependencies = [
"air-interpreter-interface",
"air-utils",

View File

@ -1,5 +1,23 @@
# Changelog
## [0.54.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.53.0...air-interpreter-v0.54.0) (2023-10-26)
### ⚠ BREAKING CHANGES
* **air-interpreter:** enable signature generation and verification features ([#731](https://github.com/fluencelabs/aquavm/issues/731))
### Features
* **air-interpreter:** enable signature generation and verification features ([#731](https://github.com/fluencelabs/aquavm/issues/731)) ([635352b](https://github.com/fluencelabs/aquavm/commit/635352bc5d4036378bb9e534866bb879f18d373c))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.53.0 to 0.54.0
## [0.53.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.52.0...air-interpreter-v0.53.0) (2023-10-16)

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.53.0"
version = "0.54.0"
description = "Crate-wrapper for air"
authors = ["Fluence Labs"]
edition = "2018"
@ -18,7 +18,7 @@ name = "air_interpreter_server"
path = "src/marine.rs"
[dependencies]
aquavm-air = { version = "0.53.0", path = "../air" }
aquavm-air = { version = "0.54.0", path = "../air" }
air-interpreter-interface = { version = "0.15.1", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

View File

@ -1,5 +1,31 @@
# Changelog
## [0.54.0](https://github.com/fluencelabs/aquavm/compare/air-v0.53.0...air-v0.54.0) (2023-10-26)
### ⚠ BREAKING CHANGES
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729))
### Features
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729)) ([776d81a](https://github.com/fluencelabs/aquavm/commit/776d81a1dba2379e4019dc6bf851ae8396550d66))
### 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
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
* air-interpreter-data bumped from 0.13.0 to 0.14.0
* air-interpreter-signatures bumped from 0.1.3 to 0.1.4
* air-trace-handler bumped from 0.5.6 to 0.5.7
## [0.53.0](https://github.com/fluencelabs/aquavm/compare/air-v0.52.0...air-v0.53.0) (2023-10-16)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.53.0"
version = "0.54.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
@ -18,14 +18,14 @@ doctest = false
[dependencies]
aquavm-air-parser = { version = "0.10.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.10", path = "../crates/air-lib/execution-info-collector" }
air-interpreter-cid = { version = "0.5.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.13.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-signatures = { version = "0.1.3", path = "../crates/air-lib/interpreter-signatures" }
air-interpreter-cid = { version = "0.6.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.14.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-signatures = { version = "0.1.4", path = "../crates/air-lib/interpreter-signatures" }
air-interpreter-interface = { version = "0.15.1", path = "../crates/air-lib/interpreter-interface", default-features = false }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
air-lambda-ast = { version = "0.1.0", path = "../crates/air-lib/lambda/ast" }
air-lambda-parser = { version = "0.1.0", path = "../crates/air-lib/lambda/parser" }
air-trace-handler = { version = "0.5.6", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.5.7", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.2.0", path = "../crates/air-lib/utils" }
polyplets = { version = "0.5.1", path = "../crates/air-lib/polyplets" }
fluence-keypair = { version = "0.10.3", default-features = false }

View File

@ -21,7 +21,7 @@ use std::str::FromStr;
/// Minimal supported interpreter version, should be updated according to
/// [./docs/update-guide.md]
static MINIMAL_INTERPRETER_VERSION: Lazy<semver::Version> =
Lazy::new(|| semver::Version::from_str("0.45.0").expect("valid minimal supported version specified"));
Lazy::new(|| semver::Version::from_str("0.54.0").expect("valid minimal supported version specified"));
/// Current interpreter version, more info in
/// [./docs/update-guide.md]

View File

@ -1,5 +1,12 @@
# Changelog
## [0.54.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.53.0...avm-client-v0.54.0) (2023-10-26)
### Miscellaneous Chores
* **avm-client:** Synchronize air-interpreter versions
## [0.53.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.52.0...avm-client-v0.53.0) (2023-10-16)

View File

@ -1,12 +1,12 @@
{
"name": "@fluencelabs/avm",
"version": "0.53.0",
"version": "0.54.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@fluencelabs/avm",
"version": "0.53.0",
"version": "0.54.0",
"license": "Apache 2.0",
"devDependencies": {
"typescript": "5.2.2"

View File

@ -1,7 +1,7 @@
{
"name": "@fluencelabs/avm",
"description": "Aquamarine VM",
"version": "0.53.0",
"version": "0.54.0",
"main": "./dist/index.js",
"repository": "https://github.com/fluencelabs/air",
"author": "Fluence Labs",

View File

@ -16,6 +16,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* avm-data-store bumped from 0.7.1 to 0.7.2
* avm-interface bumped from 0.29.1 to 0.29.2
## [0.33.3](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.33.2...avm-server-v0.33.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))
## [0.33.1](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.33.0...avm-server-v0.33.1) (2023-09-21)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.33.2"
version = "0.33.3"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -1,5 +1,21 @@
# Changelog
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-cid-v0.5.0...air-interpreter-cid-v0.6.0) (2023-10-26)
### ⚠ BREAKING CHANGES
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729))
### Features
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729)) ([776d81a](https://github.com/fluencelabs/aquavm/commit/776d81a1dba2379e4019dc6bf851ae8396550d66))
### Bug Fixes
* **interpreter-cid:** fix compilation with correct featureflag ([a84716d](https://github.com/fluencelabs/aquavm/commit/a84716dad60170567acb0b7755c1e7de403a511e))
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-cid-v0.4.0...air-interpreter-cid-v0.5.0) (2023-10-16)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-cid"
description = "AIR interpreter CID util module"
version = "0.5.0"
version = "0.6.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -25,6 +25,30 @@
* dependencies
* air-utils bumped from 0.1.1 to 0.2.0
## [0.14.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.13.0...air-interpreter-data-v0.14.0) (2023-10-26)
### ⚠ BREAKING CHANGES
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729))
### Features
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729)) ([776d81a](https://github.com/fluencelabs/aquavm/commit/776d81a1dba2379e4019dc6bf851ae8396550d66))
### 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
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
* air-interpreter-signatures bumped from 0.1.3 to 0.1.4
## [0.13.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.12.1...air-interpreter-data-v0.13.0) (2023-10-16)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.13.0"
version = "0.14.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -17,8 +17,8 @@ path = "src/lib.rs"
[dependencies]
air-utils = { version = "0.2.0", path = "../utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
air-interpreter-signatures = { version = "0.1.3", path = "../interpreter-signatures" }
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
air-interpreter-signatures = { version = "0.1.4", path = "../interpreter-signatures" }
polyplets = { version = "0.5.1", path = "../polyplets" }
fluence-keypair = { version = "0.10.3", default-features = false }

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-signatures"
description = "AIR interpreter signatures util module"
version = "0.1.3"
version = "0.1.4"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -11,7 +11,7 @@ keywords = ["fluence", "air", "programming-language"]
categories = ["wasm"]
[dependencies]
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
fluence-keypair = { version = "0.10.3", default-features = false }
bs58 = "0.5.0"

View File

@ -64,6 +64,23 @@
* avm-interface bumped from 0.29.1 to 0.29.2
* avm-server bumped from 0.33.1 to 0.33.2
## [0.12.1](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.12.0...air-test-utils-v0.12.1) (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-interpreter-cid bumped from 0.5.0 to 0.6.0
* air-interpreter-data bumped from 0.13.0 to 0.14.0
* avm-server bumped from 0.33.2 to 0.33.3
## [0.12.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.11.1...air-test-utils-v0.12.0) (2023-10-16)

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.12.0"
version = "0.12.1"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
@ -15,12 +15,12 @@ name = "air_test_utils"
path = "src/lib.rs"
[dependencies]
aquavm-air = { version = "0.53.0", path = "../../../air" }
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.13.0", path = "../interpreter-data" }
aquavm-air = { version = "0.54.0", path = "../../../air" }
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.14.0", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.15.1", path = "../interpreter-interface" }
avm-interface = { version = "0.29.2", path = "../../../avm/interface" }
avm-server = { version = "0.33.2", path = "../../../avm/server" }
avm-server = { version = "0.33.3", path = "../../../avm/server" }
marine-rs-sdk = "0.10.0"
object-pool = "0.5.4"

View File

@ -35,6 +35,11 @@
* air-interpreter-cid bumped from 0.4.0 to 0.5.0
* air-interpreter-data bumped from 0.12.1 to 0.13.0
* The following workspace dependencies were updated
* dependencies
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
* air-interpreter-data bumped from 0.13.0 to 0.14.0
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.4.0...air-trace-handler-v0.5.0) (2023-08-31)

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.5.6"
version = "0.5.7"
description = "Implementation of AIR trace handler"
authors = ["Fluence Labs"]
edition = "2018"
@ -13,8 +13,8 @@ name = "air_trace_handler"
path = "src/lib.rs"
[dependencies]
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.13.0", path = "../interpreter-data" }
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.14.0", path = "../interpreter-data" }
air-log-targets = { version = "0.1.0", path = "../log-targets" }
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
polyplets = { version = "0.5.1", path = "../polyplets" }

View File

@ -4,7 +4,7 @@ version = 3
[[package]]
name = "air-interpreter-wasm"
version = "0.53.0"
version = "0.54.0"
dependencies = [
"built",
]

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter-wasm"
version = "0.53.0"
version = "0.54.0"
description = "Distribution of AIR interpreter as .wasm"
authors = ["Fluence Labs"]
license = "Apache-2.0"

View File

@ -57,6 +57,11 @@
* air-test-utils bumped from 0.11.1 to 0.12.0
* air-interpreter-signatures bumped from 0.1.2 to 0.1.3
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.12.0 to 0.12.1
* air-interpreter-signatures bumped from 0.1.3 to 0.1.4
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.6.1...air-testing-framework-v0.7.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.7.2"
version = "0.7.3"
description = "AquaVM testing framework"
authors = ["Fluence Labs"]
edition = "2018"
@ -14,7 +14,7 @@ name = "air_test_framework"
path = "src/lib.rs"
[dependencies]
air-test-utils = { version = "0.12.0", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.12.1", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"
@ -23,7 +23,7 @@ nom = "7.1.3"
nom_locate = "4.1.0"
serde_json = "1.0.95"
regex = "1.10.2"
air-interpreter-signatures = { version = "0.1.3", path = "../air-lib/interpreter-signatures" }
air-interpreter-signatures = { version = "0.1.4", path = "../air-lib/interpreter-signatures" }
[dev-dependencies]
maplit = "1.0.2"

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"] }

View File

@ -48,8 +48,9 @@ dependencies = [
[[package]]
name = "air-interpreter-cid"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"blake3",
"cid",
"multihash 0.18.1",
"serde",
@ -59,7 +60,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"air-interpreter-cid",
"air-interpreter-signatures",
@ -89,7 +90,7 @@ dependencies = [
[[package]]
name = "air-interpreter-signatures"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"air-interpreter-cid",
"borsh 0.10.3",
@ -127,7 +128,7 @@ version = "0.1.0"
[[package]]
name = "air-near-contract"
version = "0.53.0"
version = "0.54.0"
dependencies = [
"air-interpreter-interface",
"aquavm-air",
@ -139,7 +140,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.5.6"
version = "0.5.7"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -175,7 +176,7 @@ dependencies = [
[[package]]
name = "aquavm-air"
version = "0.53.0"
version = "0.54.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",

View File

@ -1,6 +1,6 @@
[package]
name = "air-near-contract"
version = "0.53.0"
version = "0.54.0"
description = "AIR interpreter as a NEAR contract"
authors = ["Fluence labs"]
edition = "2018"