From d0ca93c2315a31982096a0b0e480758646986ba4 Mon Sep 17 00:00:00 2001 From: fluencebot <116741523+fluencebot@users.noreply.github.com> Date: Wed, 24 Jan 2024 15:41:11 +0200 Subject: [PATCH] chore: release master (#797) * chore: release master * chore: Bump air-interpreter and air-near-contract version to 0.59.0 --- .github/release-please/manifest.json | 20 ++++++++-------- Cargo.lock | 18 +++++++------- air-interpreter/CHANGELOG.md | 15 ++++++++++++ air-interpreter/Cargo.toml | 6 ++--- air/CHANGELOG.md | 24 +++++++++++++++++++ air/Cargo.toml | 4 ++-- avm/client/CHANGELOG.md | 7 ++++++ avm/client/package-lock.json | 4 ++-- avm/client/package.json | 2 +- avm/interface/CHANGELOG.md | 4 ++++ avm/interface/Cargo.toml | 4 ++-- avm/server/CHANGELOG.md | 20 ++++++++++++++++ avm/server/Cargo.toml | 8 +++---- .../interpreter-interface/CHANGELOG.md | 7 ++++++ .../air-lib/interpreter-interface/Cargo.toml | 2 +- crates/air-lib/test-utils/CHANGELOG.md | 17 +++++++++++++ crates/air-lib/test-utils/Cargo.toml | 10 ++++---- crates/data-store/CHANGELOG.md | 4 ++++ crates/data-store/Cargo.toml | 4 ++-- crates/interpreter-wasm/Cargo.lock | 2 +- crates/interpreter-wasm/Cargo.toml | 2 +- crates/testing-framework/CHANGELOG.md | 4 ++++ crates/testing-framework/Cargo.toml | 4 ++-- tools/cli/air/CHANGELOG.md | 8 +++++++ tools/cli/air/Cargo.toml | 12 +++++----- tools/wasm/air-near-contract/Cargo.lock | 6 ++--- tools/wasm/air-near-contract/Cargo.toml | 2 +- 27 files changed, 165 insertions(+), 55 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index e00461d9..dd6b5edd 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,26 +1,26 @@ { - "air": "0.58.0", - "air-interpreter": "0.58.0", - "avm/interface": "0.31.1", - "avm/server": "0.34.2", - "avm/client": "0.58.0", + "air": "0.59.0", + "air-interpreter": "0.59.0", + "avm/interface": "0.31.2", + "avm/server": "0.35.0", + "avm/client": "0.59.0", "crates/air-lib/air-parser": "0.11.1", "crates/air-lib/execution-info-collector": "0.7.12", "crates/air-lib/interpreter-cid": "0.9.0", "crates/air-lib/interpreter-data": "0.17.0", - "crates/air-lib/test-utils": "0.15.0", + "crates/air-lib/test-utils": "0.15.1", "crates/air-lib/trace-handler": "0.5.10", "crates/air-lib/utils": "0.2.0", "crates/beautifier": "0.4.1", - "crates/data-store": "0.7.6", - "crates/testing-framework": "0.8.3", + "crates/data-store": "0.7.7", + "crates/testing-framework": "0.8.4", "tools/cli/aquavm-air-cli": "0.2.6", "tools/wasm/air-beautify-wasm": "0.3.7", - "tools/cli/air": "0.6.2", + "tools/cli/air": "0.6.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.17.1", + "crates/air-lib/interpreter-interface": "0.17.2", "crates/air-lib/interpreter-signatures": "0.1.7", "crates/air-lib/polyplets": "0.6.0" } diff --git a/Cargo.lock b/Cargo.lock index be5c045f..18b85a30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,7 +146,7 @@ dependencies = [ [[package]] name = "air-interpreter" -version = "0.58.0" +version = "0.59.0" dependencies = [ "air-interpreter-interface", "air-log-targets", @@ -202,7 +202,7 @@ dependencies = [ [[package]] name = "air-interpreter-interface" -version = "0.17.1" +version = "0.17.2" dependencies = [ "air-interpreter-sede", "fluence-it-types", @@ -268,7 +268,7 @@ version = "0.1.0" [[package]] name = "air-test-utils" -version = "0.15.0" +version = "0.15.1" dependencies = [ "air-interpreter-cid", "air-interpreter-data", @@ -293,7 +293,7 @@ dependencies = [ [[package]] name = "air-testing-framework" -version = "0.8.3" +version = "0.8.4" dependencies = [ "air-interpreter-signatures", "air-test-utils", @@ -422,7 +422,7 @@ checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" [[package]] name = "aquavm-air" -version = "0.58.0" +version = "0.59.0" dependencies = [ "air-execution-info-collector", "air-interpreter-cid", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "aquavm-air-cli" -version = "0.6.2" +version = "0.6.3" dependencies = [ "air-beautifier", "air-interpreter-data", @@ -748,7 +748,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "avm-data-store" -version = "0.7.6" +version = "0.7.7" dependencies = [ "avm-interface", "serde", @@ -758,7 +758,7 @@ dependencies = [ [[package]] name = "avm-interface" -version = "0.31.1" +version = "0.31.2" dependencies = [ "air-interpreter-interface", "air-interpreter-sede", @@ -774,7 +774,7 @@ dependencies = [ [[package]] name = "avm-server" -version = "0.34.2" +version = "0.35.0" dependencies = [ "air-interpreter-interface", "air-interpreter-sede", diff --git a/air-interpreter/CHANGELOG.md b/air-interpreter/CHANGELOG.md index f1157cb2..5427fa59 100644 --- a/air-interpreter/CHANGELOG.md +++ b/air-interpreter/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.59.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.58.0...air-interpreter-v0.59.0) (2024-01-24) + + +### Bug Fixes + +* **deps:** update rust crate marine-rs-sdk to 0.10.3 ([#782](https://github.com/fluencelabs/aquavm/issues/782)) ([a33e853](https://github.com/fluencelabs/aquavm/commit/a33e8538123de71ea30f88ee5b40cda88f968707)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.58.0 to 0.59.0 + * air-interpreter-interface bumped from 0.17.1 to 0.17.2 + ## [0.58.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.57.0...air-interpreter-v0.58.0) (2024-01-11) diff --git a/air-interpreter/Cargo.toml b/air-interpreter/Cargo.toml index 4ba46af8..98682567 100644 --- a/air-interpreter/Cargo.toml +++ b/air-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter" -version = "0.58.0" +version = "0.59.0" description = "Crate-wrapper for air" authors = ["Fluence Labs"] edition = "2021" @@ -18,8 +18,8 @@ name = "air_interpreter_server" path = "src/marine.rs" [dependencies] -aquavm-air = { version = "0.58.0", path = "../air" } -air-interpreter-interface = { version = "0.17.1", path = "../crates/air-lib/interpreter-interface" } +aquavm-air = { version = "0.59.0", path = "../air" } +air-interpreter-interface = { version = "0.17.2", path = "../crates/air-lib/interpreter-interface" } air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" } marine-rs-sdk = {version = "0.10.3", features = ["logger"] } diff --git a/air/CHANGELOG.md b/air/CHANGELOG.md index 4c74f8f3..7a9e3aaf 100644 --- a/air/CHANGELOG.md +++ b/air/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.59.0](https://github.com/fluencelabs/aquavm/compare/air-v0.58.0...air-v0.59.0) (2024-01-24) + + +### ⚠ BREAKING CHANGES + +* **deps:** update to marine runtime with memory limits and wasmtime ([#768](https://github.com/fluencelabs/aquavm/issues/768)) + +### Features + +* **deps:** update to marine runtime with memory limits and wasmtime ([#768](https://github.com/fluencelabs/aquavm/issues/768)) ([3375c7a](https://github.com/fluencelabs/aquavm/commit/3375c7a3b6b029ab5859ff00c1554abc8597542b)) + + +### Bug Fixes + +* **deps:** update rust crate marine-rs-sdk to 0.10.3 ([#782](https://github.com/fluencelabs/aquavm/issues/782)) ([a33e853](https://github.com/fluencelabs/aquavm/commit/a33e8538123de71ea30f88ee5b40cda88f968707)) +* **performance:** avoiding particle data printout in errors ([6c1cb28](https://github.com/fluencelabs/aquavm/commit/6c1cb289cc8ed7ba380d134cff1aec8b54c092ec)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * air-interpreter-interface bumped from 0.17.1 to 0.17.2 + ## [0.58.0](https://github.com/fluencelabs/aquavm/compare/air-v0.57.0...air-v0.58.0) (2024-01-11) diff --git a/air/Cargo.toml b/air/Cargo.toml index 829d4198..bebf58b5 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquavm-air" -version = "0.58.0" +version = "0.59.0" description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network" authors = ["Fluence Labs"] edition = "2021" @@ -22,7 +22,7 @@ air-interpreter-cid = { version = "0.9.0", path = "../crates/air-lib/interpreter air-interpreter-data = { version = "0.17.0", path = "../crates/air-lib/interpreter-data" } air-interpreter-sede = { version = "0.1.0", path = "../crates/air-lib/interpreter-sede" } air-interpreter-signatures = { version = "0.1.7", path = "../crates/air-lib/interpreter-signatures", features = ["rkyv"] } -air-interpreter-interface = { version = "0.17.1", path = "../crates/air-lib/interpreter-interface", default-features = false } +air-interpreter-interface = { version = "0.17.2", 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" } diff --git a/avm/client/CHANGELOG.md b/avm/client/CHANGELOG.md index 3d128513..3b87f72c 100644 --- a/avm/client/CHANGELOG.md +++ b/avm/client/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.59.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.58.0...avm-client-v0.59.0) (2024-01-24) + + +### Miscellaneous Chores + +* **avm-client:** Synchronize air-interpreter versions + ## [0.58.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.57.0...avm-client-v0.58.0) (2024-01-11) diff --git a/avm/client/package-lock.json b/avm/client/package-lock.json index 13fe4e48..6c305a63 100644 --- a/avm/client/package-lock.json +++ b/avm/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fluencelabs/avm", - "version": "0.58.0", + "version": "0.59.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fluencelabs/avm", - "version": "0.58.0", + "version": "0.59.0", "license": "Apache 2.0", "dependencies": { "msgpack-lite": "^0.1.26", diff --git a/avm/client/package.json b/avm/client/package.json index c222560f..18cbcb10 100644 --- a/avm/client/package.json +++ b/avm/client/package.json @@ -1,7 +1,7 @@ { "name": "@fluencelabs/avm", "description": "Aquamarine VM", - "version": "0.58.0", + "version": "0.59.0", "main": "./dist/index.js", "repository": "https://github.com/fluencelabs/air", "author": "Fluence Labs", diff --git a/avm/interface/CHANGELOG.md b/avm/interface/CHANGELOG.md index b46f300a..d2c53520 100644 --- a/avm/interface/CHANGELOG.md +++ b/avm/interface/CHANGELOG.md @@ -35,6 +35,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * air-interpreter-interface bumped from 0.17.0 to 0.17.1 * polyplets bumped from 0.5.2 to 0.6.0 +* The following workspace dependencies were updated + * dependencies + * air-interpreter-interface bumped from 0.17.1 to 0.17.2 + ## [0.31.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.30.0...avm-interface-v0.31.0) (2024-01-09) diff --git a/avm/interface/Cargo.toml b/avm/interface/Cargo.toml index 0681cd76..3df2fb83 100644 --- a/avm/interface/Cargo.toml +++ b/avm/interface/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "avm-interface" description = "Fluence AIR VM interfacing" -version = "0.31.1" +version = "0.31.2" authors = ["Fluence Labs"] edition = "2021" license = "Apache-2.0" @@ -15,7 +15,7 @@ name = "avm_interface" path = "src/lib.rs" [dependencies] -air-interpreter-interface = { version = "0.17.1", path = "../../crates/air-lib/interpreter-interface", default-features = false } +air-interpreter-interface = { version = "0.17.2", path = "../../crates/air-lib/interpreter-interface", default-features = false } air-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede", default-features = false } air-utils = { version = "0.2.0", path = "../../crates/air-lib/utils" } polyplets = { version = "0.6.0", path = "../../crates/air-lib/polyplets" } diff --git a/avm/server/CHANGELOG.md b/avm/server/CHANGELOG.md index ccd1e4e5..c934bcb1 100644 --- a/avm/server/CHANGELOG.md +++ b/avm/server/CHANGELOG.md @@ -22,6 +22,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * avm-data-store bumped from 0.7.4 to 0.7.5 * avm-interface bumped from 0.30.0 to 0.31.0 +## [0.35.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.34.2...avm-server-v0.35.0) (2024-01-24) + + +### ⚠ BREAKING CHANGES + +* **deps:** update to marine runtime with memory limits and wasmtime ([#768](https://github.com/fluencelabs/aquavm/issues/768)) + +### Features + +* **deps:** update to marine runtime with memory limits and wasmtime ([#768](https://github.com/fluencelabs/aquavm/issues/768)) ([3375c7a](https://github.com/fluencelabs/aquavm/commit/3375c7a3b6b029ab5859ff00c1554abc8597542b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * air-interpreter-interface bumped from 0.17.1 to 0.17.2 + * avm-data-store bumped from 0.7.6 to 0.7.7 + * avm-interface bumped from 0.31.1 to 0.31.2 + ## [0.34.2](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.34.1...avm-server-v0.34.2) (2024-01-11) diff --git a/avm/server/Cargo.toml b/avm/server/Cargo.toml index edbcab3a..4bdb368e 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.34.2" +version = "0.35.0" authors = ["Fluence Labs"] edition = "2021" license = "Apache-2.0" @@ -15,13 +15,13 @@ name = "avm_server" path = "src/lib.rs" [dependencies] -air-interpreter-interface = { version = "0.17.1", path = "../../crates/air-lib/interpreter-interface" } +air-interpreter-interface = { version = "0.17.2", path = "../../crates/air-lib/interpreter-interface" } air-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede" } air-utils = { version = "0.2.0", path = "../../crates/air-lib/utils" } -avm-data-store = { version = "0.7.6", path = "../../crates/data-store" } +avm-data-store = { version = "0.7.7", path = "../../crates/data-store" } marine-runtime = "0.32.0" polyplets = { version = "0.6.0", path = "../../crates/air-lib/polyplets" } -avm-interface = { version = "0.31.1", path = "../../avm/interface" } +avm-interface = { version = "0.31.2", path = "../../avm/interface" } eyre = "0.6.8" thiserror = "1.0.50" diff --git a/crates/air-lib/interpreter-interface/CHANGELOG.md b/crates/air-lib/interpreter-interface/CHANGELOG.md index 67d050e3..dbf259ab 100644 --- a/crates/air-lib/interpreter-interface/CHANGELOG.md +++ b/crates/air-lib/interpreter-interface/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.17.2](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.17.1...air-interpreter-interface-v0.17.2) (2024-01-24) + + +### Bug Fixes + +* **deps:** update rust crate marine-rs-sdk to 0.10.3 ([#782](https://github.com/fluencelabs/aquavm/issues/782)) ([a33e853](https://github.com/fluencelabs/aquavm/commit/a33e8538123de71ea30f88ee5b40cda88f968707)) + ## [0.17.1](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.17.0...air-interpreter-interface-v0.17.1) (2024-01-11) diff --git a/crates/air-lib/interpreter-interface/Cargo.toml b/crates/air-lib/interpreter-interface/Cargo.toml index 1c0a1576..159efcc9 100644 --- a/crates/air-lib/interpreter-interface/Cargo.toml +++ b/crates/air-lib/interpreter-interface/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "air-interpreter-interface" description = "Interface of the AIR interpreter" -version = "0.17.1" +version = "0.17.2" authors = ["Fluence Labs"] edition = "2021" license = "Apache-2.0" diff --git a/crates/air-lib/test-utils/CHANGELOG.md b/crates/air-lib/test-utils/CHANGELOG.md index cfbb0c29..2d4eb4d1 100644 --- a/crates/air-lib/test-utils/CHANGELOG.md +++ b/crates/air-lib/test-utils/CHANGELOG.md @@ -71,6 +71,23 @@ * avm-interface bumped from 0.30.0 to 0.31.0 * avm-server bumped from 0.34.0 to 0.34.1 +## [0.15.1](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.15.0...air-test-utils-v0.15.1) (2024-01-24) + + +### Bug Fixes + +* **deps:** update rust crate marine-rs-sdk to 0.10.3 ([#782](https://github.com/fluencelabs/aquavm/issues/782)) ([a33e853](https://github.com/fluencelabs/aquavm/commit/a33e8538123de71ea30f88ee5b40cda88f968707)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.58.0 to 0.59.0 + * air-interpreter-interface bumped from 0.17.1 to 0.17.2 + * avm-interface bumped from 0.31.1 to 0.31.2 + * avm-server bumped from 0.34.2 to 0.35.0 + ## [0.15.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.14.1...air-test-utils-v0.15.0) (2024-01-11) diff --git a/crates/air-lib/test-utils/Cargo.toml b/crates/air-lib/test-utils/Cargo.toml index caa589ca..6ce2b475 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.15.0" +version = "0.15.1" description = "Test utils for the AIR interpreter" authors = ["Fluence Labs"] edition = "2021" @@ -15,14 +15,14 @@ name = "air_test_utils" path = "src/lib.rs" [dependencies] -aquavm-air = { version = "0.58.0", path = "../../../air" } +aquavm-air = { version = "0.59.0", path = "../../../air" } air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid" } air-interpreter-data = { version = "0.17.0", path = "../interpreter-data" } -air-interpreter-interface = { version = "0.17.1", path = "../interpreter-interface" } +air-interpreter-interface = { version = "0.17.2", path = "../interpreter-interface" } air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede" } air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures" } -avm-interface = { version = "0.31.1", path = "../../../avm/interface" } -avm-server = { version = "0.34.2", path = "../../../avm/server" } +avm-interface = { version = "0.31.2", path = "../../../avm/interface" } +avm-server = { version = "0.35.0", path = "../../../avm/server" } marine-rs-sdk = "0.10.3" object-pool = "0.5.4" diff --git a/crates/data-store/CHANGELOG.md b/crates/data-store/CHANGELOG.md index fc21ae3c..bc00ada6 100644 --- a/crates/data-store/CHANGELOG.md +++ b/crates/data-store/CHANGELOG.md @@ -40,6 +40,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * dependencies * avm-interface bumped from 0.31.0 to 0.31.1 +* The following workspace dependencies were updated + * dependencies + * avm-interface bumped from 0.31.1 to 0.31.2 + ## [0.7.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.6.3...avm-data-store-v0.7.0) (2023-08-17) diff --git a/crates/data-store/Cargo.toml b/crates/data-store/Cargo.toml index 58e87fa3..029c85ff 100644 --- a/crates/data-store/Cargo.toml +++ b/crates/data-store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avm-data-store" -version = "0.7.6" +version = "0.7.7" description = "Definition of the AVM DataStore trait" authors = ["Fluence Labs"] edition = "2021" @@ -15,7 +15,7 @@ name = "avm_data_store" path = "src/lib.rs" [dependencies] -avm-interface = { version = "0.31.1", path = "../../avm/interface"} +avm-interface = { version = "0.31.2", path = "../../avm/interface"} serde = { version = "1.0.190", features = ["derive"] } serde_bytes = "0.11.9" diff --git a/crates/interpreter-wasm/Cargo.lock b/crates/interpreter-wasm/Cargo.lock index 78fc9682..236f1ffe 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.58.0" +version = "0.59.0" dependencies = [ "built", ] diff --git a/crates/interpreter-wasm/Cargo.toml b/crates/interpreter-wasm/Cargo.toml index 10438c38..747d7728 100644 --- a/crates/interpreter-wasm/Cargo.toml +++ b/crates/interpreter-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter-wasm" -version = "0.58.0" +version = "0.59.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 c0960e0f..8bae3359 100644 --- a/crates/testing-framework/CHANGELOG.md +++ b/crates/testing-framework/CHANGELOG.md @@ -71,6 +71,10 @@ * air-test-utils bumped from 0.14.1 to 0.15.0 * air-interpreter-signatures bumped from 0.1.6 to 0.1.7 +* The following workspace dependencies were updated + * dependencies + * air-test-utils bumped from 0.15.0 to 0.15.1 + ## [0.8.1](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.8.0...air-testing-framework-v0.8.1) (2024-01-03) diff --git a/crates/testing-framework/Cargo.toml b/crates/testing-framework/Cargo.toml index ada0d060..fbc8259a 100644 --- a/crates/testing-framework/Cargo.toml +++ b/crates/testing-framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-testing-framework" -version = "0.8.3" +version = "0.8.4" description = "AquaVM testing framework" authors = ["Fluence Labs"] edition = "2021" @@ -14,7 +14,7 @@ name = "air_test_framework" path = "src/lib.rs" [dependencies] -air-test-utils = { version = "0.15.0", path = "../air-lib/test-utils" } +air-test-utils = { version = "0.15.1", path = "../air-lib/test-utils" } aquavm-air-parser = { version = "0.11.1", path = "../air-lib/air-parser" } itertools = "0.10.5" diff --git a/tools/cli/air/CHANGELOG.md b/tools/cli/air/CHANGELOG.md index da5d2992..8a900988 100644 --- a/tools/cli/air/CHANGELOG.md +++ b/tools/cli/air/CHANGELOG.md @@ -119,6 +119,14 @@ * air-interpreter-interface bumped from 0.16.0 to 0.17.0 * air-test-utils bumped from 0.14.0 to 0.14.1 +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.58.0 to 0.59.0 + * avm-data-store bumped from 0.7.6 to 0.7.7 + * avm-interface bumped from 0.31.1 to 0.31.2 + * air-interpreter-interface bumped from 0.17.1 to 0.17.2 + * air-test-utils bumped from 0.15.0 to 0.15.1 + ## [0.6.2](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.6.1...aquavm-air-cli-v0.6.2) (2024-01-11) diff --git a/tools/cli/air/Cargo.toml b/tools/cli/air/Cargo.toml index 9d9a8af9..65f1b211 100644 --- a/tools/cli/air/Cargo.toml +++ b/tools/cli/air/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquavm-air-cli" -version = "0.6.2" +version = "0.6.3" edition = "2021" description = "AIR execution and printing tool" authors = ["Fluence Labs"] @@ -10,14 +10,14 @@ documentation = "https://docs.rs/aquavm-air-cli" keywords = ["fluence", "air", "tracing"] [dependencies] -aquavm-air = { version = "0.58.0", path = "../../../air" } +aquavm-air = { version = "0.59.0", path = "../../../air" } air-beautifier = { version = "0.4.1", path = "../../../crates/beautifier" } -avm-data-store = { version = "0.7.6", path = "../../../crates/data-store" } -avm-interface = { version = "0.31.1", path = "../../../avm/interface" } -air-interpreter-interface = { version = "0.17.1", path = "../../../crates/air-lib/interpreter-interface", default-features = false } +avm-data-store = { version = "0.7.7", path = "../../../crates/data-store" } +avm-interface = { version = "0.31.2", path = "../../../avm/interface" } +air-interpreter-interface = { version = "0.17.2", path = "../../../crates/air-lib/interpreter-interface", default-features = false } air-interpreter-data = { version = "0.17.0", path = "../../../crates/air-lib/interpreter-data" } air-interpreter-sede = { version = "0.1.0", path = "../../../crates/air-lib/interpreter-sede", default-features = false } -air-test-utils = { version = "0.15.0",path = "../../../crates/air-lib/test-utils", optional = true } +air-test-utils = { version = "0.15.1",path = "../../../crates/air-lib/test-utils", optional = true } anyhow = "1.0.79" clap = { version = "4.4.7", features = ["derive", "env"] } diff --git a/tools/wasm/air-near-contract/Cargo.lock b/tools/wasm/air-near-contract/Cargo.lock index 8e1e09b5..9df29c65 100644 --- a/tools/wasm/air-near-contract/Cargo.lock +++ b/tools/wasm/air-near-contract/Cargo.lock @@ -88,7 +88,7 @@ dependencies = [ [[package]] name = "air-interpreter-interface" -version = "0.17.1" +version = "0.17.2" dependencies = [ "air-interpreter-sede", "fluence-it-types", @@ -154,7 +154,7 @@ version = "0.1.0" [[package]] name = "air-near-contract" -version = "0.58.0" +version = "0.59.0" dependencies = [ "air-interpreter-interface", "aquavm-air", @@ -202,7 +202,7 @@ dependencies = [ [[package]] name = "aquavm-air" -version = "0.58.0" +version = "0.59.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 26539d6f..1819bfe0 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.58.0" +version = "0.59.0" description = "AIR interpreter as a NEAR contract" authors = ["Fluence labs"] edition = "2021"