diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 789cde76..0450f6a6 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -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" } diff --git a/Cargo.lock b/Cargo.lock index 50349fde..32c90211 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/air-interpreter/CHANGELOG.md b/air-interpreter/CHANGELOG.md index 88c016f4..a962a715 100644 --- a/air-interpreter/CHANGELOG.md +++ b/air-interpreter/CHANGELOG.md @@ -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) diff --git a/air-interpreter/Cargo.toml b/air-interpreter/Cargo.toml index 5fb7c452..16bb8fd2 100644 --- a/air-interpreter/Cargo.toml +++ b/air-interpreter/Cargo.toml @@ -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" } diff --git a/air/CHANGELOG.md b/air/CHANGELOG.md index a026c6b9..a8f2216c 100644 --- a/air/CHANGELOG.md +++ b/air/CHANGELOG.md @@ -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) diff --git a/air/Cargo.toml b/air/Cargo.toml index 05fc980e..bd8ea497 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -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 } diff --git a/air/src/preparation_step/interpreter_versions.rs b/air/src/preparation_step/interpreter_versions.rs index c40dbb35..2ec1d34e 100644 --- a/air/src/preparation_step/interpreter_versions.rs +++ b/air/src/preparation_step/interpreter_versions.rs @@ -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 = - 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] diff --git a/avm/client/CHANGELOG.md b/avm/client/CHANGELOG.md index 32e7fc99..121d380f 100644 --- a/avm/client/CHANGELOG.md +++ b/avm/client/CHANGELOG.md @@ -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) diff --git a/avm/client/package-lock.json b/avm/client/package-lock.json index 518cf954..3e8b82fb 100644 --- a/avm/client/package-lock.json +++ b/avm/client/package-lock.json @@ -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" diff --git a/avm/client/package.json b/avm/client/package.json index 9ed40a5d..ada2a301 100644 --- a/avm/client/package.json +++ b/avm/client/package.json @@ -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", diff --git a/avm/server/CHANGELOG.md b/avm/server/CHANGELOG.md index b4d012fe..d90ccc11 100644 --- a/avm/server/CHANGELOG.md +++ b/avm/server/CHANGELOG.md @@ -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) diff --git a/avm/server/Cargo.toml b/avm/server/Cargo.toml index 6cebbb00..eb2047c0 100644 --- a/avm/server/Cargo.toml +++ b/avm/server/Cargo.toml @@ -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" diff --git a/crates/air-lib/interpreter-cid/CHANGELOG.md b/crates/air-lib/interpreter-cid/CHANGELOG.md index 80bec15c..86ee2ce2 100644 --- a/crates/air-lib/interpreter-cid/CHANGELOG.md +++ b/crates/air-lib/interpreter-cid/CHANGELOG.md @@ -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) diff --git a/crates/air-lib/interpreter-cid/Cargo.toml b/crates/air-lib/interpreter-cid/Cargo.toml index 3f2980b1..d89feb2d 100644 --- a/crates/air-lib/interpreter-cid/Cargo.toml +++ b/crates/air-lib/interpreter-cid/Cargo.toml @@ -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" diff --git a/crates/air-lib/interpreter-data/CHANGELOG.md b/crates/air-lib/interpreter-data/CHANGELOG.md index d9ad255f..550dbb98 100644 --- a/crates/air-lib/interpreter-data/CHANGELOG.md +++ b/crates/air-lib/interpreter-data/CHANGELOG.md @@ -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) diff --git a/crates/air-lib/interpreter-data/Cargo.toml b/crates/air-lib/interpreter-data/Cargo.toml index 7d924c2c..776cfbc7 100644 --- a/crates/air-lib/interpreter-data/Cargo.toml +++ b/crates/air-lib/interpreter-data/Cargo.toml @@ -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 } diff --git a/crates/air-lib/interpreter-signatures/Cargo.toml b/crates/air-lib/interpreter-signatures/Cargo.toml index b8232d2d..51df5ebc 100644 --- a/crates/air-lib/interpreter-signatures/Cargo.toml +++ b/crates/air-lib/interpreter-signatures/Cargo.toml @@ -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" diff --git a/crates/air-lib/test-utils/CHANGELOG.md b/crates/air-lib/test-utils/CHANGELOG.md index 6b756c02..88774460 100644 --- a/crates/air-lib/test-utils/CHANGELOG.md +++ b/crates/air-lib/test-utils/CHANGELOG.md @@ -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) diff --git a/crates/air-lib/test-utils/Cargo.toml b/crates/air-lib/test-utils/Cargo.toml index b3905ed3..dc488026 100644 --- a/crates/air-lib/test-utils/Cargo.toml +++ b/crates/air-lib/test-utils/Cargo.toml @@ -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" diff --git a/crates/air-lib/trace-handler/CHANGELOG.md b/crates/air-lib/trace-handler/CHANGELOG.md index e836dc78..389063cf 100644 --- a/crates/air-lib/trace-handler/CHANGELOG.md +++ b/crates/air-lib/trace-handler/CHANGELOG.md @@ -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) diff --git a/crates/air-lib/trace-handler/Cargo.toml b/crates/air-lib/trace-handler/Cargo.toml index ace5646e..e2d8d88f 100644 --- a/crates/air-lib/trace-handler/Cargo.toml +++ b/crates/air-lib/trace-handler/Cargo.toml @@ -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" } diff --git a/crates/interpreter-wasm/Cargo.lock b/crates/interpreter-wasm/Cargo.lock index e1d4e26f..3655c034 100644 --- a/crates/interpreter-wasm/Cargo.lock +++ b/crates/interpreter-wasm/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "air-interpreter-wasm" -version = "0.53.0" +version = "0.54.0" dependencies = [ "built", ] diff --git a/crates/interpreter-wasm/Cargo.toml b/crates/interpreter-wasm/Cargo.toml index 88154f86..81ee5052 100644 --- a/crates/interpreter-wasm/Cargo.toml +++ b/crates/interpreter-wasm/Cargo.toml @@ -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" diff --git a/crates/testing-framework/CHANGELOG.md b/crates/testing-framework/CHANGELOG.md index e8c9cc39..25d4cc02 100644 --- a/crates/testing-framework/CHANGELOG.md +++ b/crates/testing-framework/CHANGELOG.md @@ -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) diff --git a/crates/testing-framework/Cargo.toml b/crates/testing-framework/Cargo.toml index 7f19fbb0..8d3ff279 100644 --- a/crates/testing-framework/Cargo.toml +++ b/crates/testing-framework/Cargo.toml @@ -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" diff --git a/tools/cli/air/CHANGELOG.md b/tools/cli/air/CHANGELOG.md index f5a8a8ae..393a1e9b 100644 --- a/tools/cli/air/CHANGELOG.md +++ b/tools/cli/air/CHANGELOG.md @@ -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) diff --git a/tools/cli/air/Cargo.toml b/tools/cli/air/Cargo.toml index d85bff13..67318dda 100644 --- a/tools/cli/air/Cargo.toml +++ b/tools/cli/air/Cargo.toml @@ -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"] } diff --git a/tools/wasm/air-near-contract/Cargo.lock b/tools/wasm/air-near-contract/Cargo.lock index 191c8cce..19acc645 100644 --- a/tools/wasm/air-near-contract/Cargo.lock +++ b/tools/wasm/air-near-contract/Cargo.lock @@ -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", diff --git a/tools/wasm/air-near-contract/Cargo.toml b/tools/wasm/air-near-contract/Cargo.toml index d2650c41..07f85b9a 100644 --- a/tools/wasm/air-near-contract/Cargo.toml +++ b/tools/wasm/air-near-contract/Cargo.toml @@ -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"