chore: release master (#821)

This commit is contained in:
fluencebot 2024-02-22 13:05:33 +02:00 committed by GitHub
parent 08e85478b4
commit 9cc62cbb9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
42 changed files with 305 additions and 114 deletions

View File

@ -1,26 +1,26 @@
{ {
"air": "0.60.0", "air": "0.61.0",
"air-interpreter": "0.60.0", "air-interpreter": "0.61.0",
"avm/interface": "0.32.0", "avm/interface": "0.32.1",
"avm/server": "0.36.0", "avm/server": "0.37.0",
"avm/client": "0.60.0", "avm/client": "0.61.0",
"crates/air-lib/air-parser": "0.11.2", "crates/air-lib/air-parser": "0.12.0",
"crates/air-lib/execution-info-collector": "0.7.13", "crates/air-lib/execution-info-collector": "0.7.14",
"crates/air-lib/interpreter-cid": "0.9.0", "crates/air-lib/interpreter-cid": "0.9.0",
"crates/air-lib/interpreter-data": "0.17.1", "crates/air-lib/interpreter-data": "0.17.2",
"crates/air-lib/test-utils": "0.16.0", "crates/air-lib/test-utils": "0.17.0",
"crates/air-lib/trace-handler": "0.5.11", "crates/air-lib/trace-handler": "0.5.12",
"crates/air-lib/utils": "0.3.0", "crates/air-lib/utils": "0.3.0",
"crates/beautifier": "0.4.2", "crates/beautifier": "0.4.3",
"crates/data-store": "0.7.8", "crates/data-store": "0.7.9",
"crates/testing-framework": "0.9.0", "crates/testing-framework": "0.10.0",
"tools/cli/aquavm-air-cli": "0.2.6", "tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.8", "tools/wasm/air-beautify-wasm": "0.3.9",
"tools/cli/air": "0.7.0", "tools/cli/air": "0.7.1",
"crates/air-lib/lambda/ast": "0.1.0", "crates/air-lib/lambda/ast": "0.1.0",
"crates/air-lib/lambda/parser": "0.1.0", "crates/air-lib/lambda/parser": "0.1.0",
"crates/air-lib/log-targets": "0.1.0", "crates/air-lib/log-targets": "0.1.0",
"crates/air-lib/interpreter-interface": "0.18.0", "crates/air-lib/interpreter-interface": "0.19.0",
"crates/air-lib/interpreter-signatures": "0.1.7", "crates/air-lib/interpreter-signatures": "0.1.7",
"crates/air-lib/polyplets": "0.6.0" "crates/air-lib/polyplets": "0.7.0"
} }

32
Cargo.lock generated
View File

@ -113,7 +113,7 @@ dependencies = [
[[package]] [[package]]
name = "air-beautifier" name = "air-beautifier"
version = "0.4.2" version = "0.4.3"
dependencies = [ dependencies = [
"aquavm-air-parser", "aquavm-air-parser",
"itertools", "itertools",
@ -122,7 +122,7 @@ dependencies = [
[[package]] [[package]]
name = "air-beautify-wasm" name = "air-beautify-wasm"
version = "0.3.8" version = "0.3.9"
dependencies = [ dependencies = [
"air-beautifier", "air-beautifier",
"wasm-bindgen", "wasm-bindgen",
@ -130,14 +130,14 @@ dependencies = [
[[package]] [[package]]
name = "air-execution-info-collector" name = "air-execution-info-collector"
version = "0.7.13" version = "0.7.14"
dependencies = [ dependencies = [
"aquavm-air-parser", "aquavm-air-parser",
] ]
[[package]] [[package]]
name = "air-interpreter" name = "air-interpreter"
version = "0.60.0" version = "0.61.0"
dependencies = [ dependencies = [
"air-interpreter-interface", "air-interpreter-interface",
"air-log-targets", "air-log-targets",
@ -169,7 +169,7 @@ dependencies = [
[[package]] [[package]]
name = "air-interpreter-data" name = "air-interpreter-data"
version = "0.17.1" version = "0.17.2"
dependencies = [ dependencies = [
"air-interpreter-cid", "air-interpreter-cid",
"air-interpreter-sede", "air-interpreter-sede",
@ -194,7 +194,7 @@ dependencies = [
[[package]] [[package]]
name = "air-interpreter-interface" name = "air-interpreter-interface"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"air-interpreter-sede", "air-interpreter-sede",
"air-interpreter-value", "air-interpreter-value",
@ -271,7 +271,7 @@ version = "0.1.0"
[[package]] [[package]]
name = "air-test-utils" name = "air-test-utils"
version = "0.16.0" version = "0.17.0"
dependencies = [ dependencies = [
"air-interpreter-cid", "air-interpreter-cid",
"air-interpreter-data", "air-interpreter-data",
@ -297,7 +297,7 @@ dependencies = [
[[package]] [[package]]
name = "air-testing-framework" name = "air-testing-framework"
version = "0.9.0" version = "0.10.0"
dependencies = [ dependencies = [
"air-interpreter-signatures", "air-interpreter-signatures",
"air-test-utils", "air-test-utils",
@ -315,7 +315,7 @@ dependencies = [
[[package]] [[package]]
name = "air-trace-handler" name = "air-trace-handler"
version = "0.5.11" version = "0.5.12"
dependencies = [ dependencies = [
"air-interpreter-cid", "air-interpreter-cid",
"air-interpreter-data", "air-interpreter-data",
@ -426,7 +426,7 @@ checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
[[package]] [[package]]
name = "aquavm-air" name = "aquavm-air"
version = "0.60.0" version = "0.61.0"
dependencies = [ dependencies = [
"air-execution-info-collector", "air-execution-info-collector",
"air-interpreter-cid", "air-interpreter-cid",
@ -472,7 +472,7 @@ dependencies = [
[[package]] [[package]]
name = "aquavm-air-cli" name = "aquavm-air-cli"
version = "0.7.0" version = "0.7.1"
dependencies = [ dependencies = [
"air-beautifier", "air-beautifier",
"air-interpreter-data", "air-interpreter-data",
@ -503,7 +503,7 @@ dependencies = [
[[package]] [[package]]
name = "aquavm-air-parser" name = "aquavm-air-parser"
version = "0.11.2" version = "0.12.0"
dependencies = [ dependencies = [
"air-interpreter-value", "air-interpreter-value",
"air-lambda-ast", "air-lambda-ast",
@ -755,7 +755,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]] [[package]]
name = "avm-data-store" name = "avm-data-store"
version = "0.7.8" version = "0.7.9"
dependencies = [ dependencies = [
"avm-interface", "avm-interface",
"serde", "serde",
@ -765,7 +765,7 @@ dependencies = [
[[package]] [[package]]
name = "avm-interface" name = "avm-interface"
version = "0.32.0" version = "0.32.1"
dependencies = [ dependencies = [
"air-interpreter-interface", "air-interpreter-interface",
"air-interpreter-sede", "air-interpreter-sede",
@ -781,7 +781,7 @@ dependencies = [
[[package]] [[package]]
name = "avm-server" name = "avm-server"
version = "0.36.0" version = "0.37.0"
dependencies = [ dependencies = [
"air-interpreter-interface", "air-interpreter-interface",
"air-interpreter-sede", "air-interpreter-sede",
@ -4965,7 +4965,7 @@ dependencies = [
[[package]] [[package]]
name = "polyplets" name = "polyplets"
version = "0.6.0" version = "0.7.0"
dependencies = [ dependencies = [
"marine-call-parameters 0.14.0", "marine-call-parameters 0.14.0",
"serde", "serde",

View File

@ -1,5 +1,24 @@
# Changelog # Changelog
## [0.61.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.60.0...air-interpreter-v0.61.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.60.0 to 0.61.0
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
## [0.60.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.59.0...air-interpreter-v0.60.0) (2024-02-20) ## [0.60.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.59.0...air-interpreter-v0.60.0) (2024-02-20)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "air-interpreter" name = "air-interpreter"
version = "0.60.0" version = "0.61.0"
description = "Crate-wrapper for air" description = "Crate-wrapper for air"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -18,8 +18,8 @@ name = "air_interpreter_server"
path = "src/marine.rs" path = "src/marine.rs"
[dependencies] [dependencies]
aquavm-air = { version = "0.60.0", path = "../air" } aquavm-air = { version = "0.61.0", path = "../air" }
air-interpreter-interface = { version = "0.18.0", path = "../crates/air-lib/interpreter-interface" } air-interpreter-interface = { version = "0.19.0", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" } air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
marine-rs-sdk = {version = "0.14.0", features = ["logger"] } marine-rs-sdk = {version = "0.14.0", features = ["logger"] }

View File

@ -1,5 +1,28 @@
# Changelog # Changelog
## [0.61.0](https://github.com/fluencelabs/aquavm/compare/air-v0.60.0...air-v0.61.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
* air-execution-info-collector bumped from 0.7.13 to 0.7.14
* air-interpreter-data bumped from 0.17.1 to 0.17.2
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* air-trace-handler bumped from 0.5.11 to 0.5.12
* polyplets bumped from 0.6.0 to 0.7.0
## [0.60.0](https://github.com/fluencelabs/aquavm/compare/air-v0.59.0...air-v0.60.0) (2024-02-20) ## [0.60.0](https://github.com/fluencelabs/aquavm/compare/air-v0.59.0...air-v0.60.0) (2024-02-20)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "aquavm-air" name = "aquavm-air"
version = "0.60.0" version = "0.61.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network" description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -16,20 +16,20 @@ path = "src/lib.rs"
doctest = false doctest = false
[dependencies] [dependencies]
aquavm-air-parser = { version = "0.11.2", path = "../crates/air-lib/air-parser" } aquavm-air-parser = { version = "0.12.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.13", path = "../crates/air-lib/execution-info-collector" } air-execution-info-collector = { version = "0.7.14", path = "../crates/air-lib/execution-info-collector" }
air-interpreter-cid = { version = "0.9.0", path = "../crates/air-lib/interpreter-cid", features = ["rkyv"] } air-interpreter-cid = { version = "0.9.0", path = "../crates/air-lib/interpreter-cid", features = ["rkyv"] }
air-interpreter-data = { version = "0.17.1", path = "../crates/air-lib/interpreter-data" } air-interpreter-data = { version = "0.17.2", path = "../crates/air-lib/interpreter-data" }
air-interpreter-sede = { version = "0.1.0", path = "../crates/air-lib/interpreter-sede" } 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-signatures = { version = "0.1.7", path = "../crates/air-lib/interpreter-signatures", features = ["rkyv"] }
air-interpreter-value = { version = "0.1.0", path = "../crates/air-lib/interpreter-value" } air-interpreter-value = { version = "0.1.0", path = "../crates/air-lib/interpreter-value" }
air-interpreter-interface = { version = "0.18.0", path = "../crates/air-lib/interpreter-interface", default-features = false } air-interpreter-interface = { version = "0.19.0", path = "../crates/air-lib/interpreter-interface", default-features = false }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" } 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-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-lambda-parser = { version = "0.1.0", path = "../crates/air-lib/lambda/parser" }
air-trace-handler = { version = "0.5.11", path = "../crates/air-lib/trace-handler" } air-trace-handler = { version = "0.5.12", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.3.0", path = "../crates/air-lib/utils" } air-utils = { version = "0.3.0", path = "../crates/air-lib/utils" }
polyplets = { version = "0.6.0", path = "../crates/air-lib/polyplets" } polyplets = { version = "0.7.0", path = "../crates/air-lib/polyplets" }
fluence-keypair = { version = "0.10.4", default-features = false } fluence-keypair = { version = "0.10.4", default-features = false }
serde = { version = "1.0.190", features = [ "derive", "rc" ] } serde = { version = "1.0.190", features = [ "derive", "rc" ] }

View File

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

View File

@ -1,5 +1,16 @@
# Changelog # Changelog
## [0.61.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.60.0...avm-client-v0.61.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
## [0.60.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.59.0...avm-client-v0.60.0) (2024-02-20) ## [0.60.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.59.0...avm-client-v0.60.0) (2024-02-20)

View File

@ -1,12 +1,12 @@
{ {
"name": "@fluencelabs/avm", "name": "@fluencelabs/avm",
"version": "0.60.0", "version": "0.61.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@fluencelabs/avm", "name": "@fluencelabs/avm",
"version": "0.60.0", "version": "0.61.0",
"license": "Apache 2.0", "license": "Apache 2.0",
"dependencies": { "dependencies": {
"msgpack-lite": "^0.1.26", "msgpack-lite": "^0.1.26",

View File

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

View File

@ -39,6 +39,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies * dependencies
* air-interpreter-interface bumped from 0.17.1 to 0.17.2 * air-interpreter-interface bumped from 0.17.1 to 0.17.2
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* polyplets bumped from 0.6.0 to 0.7.0
## [0.32.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.31.2...avm-interface-v0.32.0) (2024-02-20) ## [0.32.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.31.2...avm-interface-v0.32.0) (2024-02-20)

View File

@ -1,7 +1,7 @@
[package] [package]
name = "avm-interface" name = "avm-interface"
description = "Fluence AIR VM interfacing" description = "Fluence AIR VM interfacing"
version = "0.32.0" version = "0.32.1"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
@ -15,10 +15,10 @@ name = "avm_interface"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
air-interpreter-interface = { version = "0.18.0", path = "../../crates/air-lib/interpreter-interface", default-features = false } air-interpreter-interface = { version = "0.19.0", 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-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede", default-features = false }
air-utils = { version = "0.3.0", path = "../../crates/air-lib/utils" } air-utils = { version = "0.3.0", path = "../../crates/air-lib/utils" }
polyplets = { version = "0.6.0", path = "../../crates/air-lib/polyplets" } polyplets = { version = "0.7.0", path = "../../crates/air-lib/polyplets" }
thiserror = "1.0.50" thiserror = "1.0.50"
maplit = "1.0.2" maplit = "1.0.2"

View File

@ -22,6 +22,27 @@ 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-data-store bumped from 0.7.4 to 0.7.5
* avm-interface bumped from 0.30.0 to 0.31.0 * avm-interface bumped from 0.30.0 to 0.31.0
## [0.37.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.36.0...avm-server-v0.37.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* avm-data-store bumped from 0.7.8 to 0.7.9
* polyplets bumped from 0.6.0 to 0.7.0
* avm-interface bumped from 0.32.0 to 0.32.1
## [0.36.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.35.0...avm-server-v0.36.0) (2024-02-20) ## [0.36.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.35.0...avm-server-v0.36.0) (2024-02-20)

View File

@ -1,7 +1,7 @@
[package] [package]
name = "avm-server" name = "avm-server"
description = "Fluence AIR VM" description = "Fluence AIR VM"
version = "0.36.0" version = "0.37.0"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
@ -15,13 +15,13 @@ name = "avm_server"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
air-interpreter-interface = { version = "0.18.0", path = "../../crates/air-lib/interpreter-interface" } air-interpreter-interface = { version = "0.19.0", path = "../../crates/air-lib/interpreter-interface" }
air-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede" } air-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede" }
air-utils = { version = "0.3.0", path = "../../crates/air-lib/utils" } air-utils = { version = "0.3.0", path = "../../crates/air-lib/utils" }
avm-data-store = { version = "0.7.8", path = "../../crates/data-store" } avm-data-store = { version = "0.7.9", path = "../../crates/data-store" }
marine-runtime = "0.35.0" marine-runtime = "0.35.0"
polyplets = { version = "0.6.0", path = "../../crates/air-lib/polyplets" } polyplets = { version = "0.7.0", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.32.0", path = "../../avm/interface" } avm-interface = { version = "0.32.1", path = "../../avm/interface" }
eyre = "0.6.11" eyre = "0.6.11"
thiserror = "1.0.50" thiserror = "1.0.50"

View File

@ -1,5 +1,16 @@
# Changelog # Changelog
## [0.12.0](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.11.2...air-parser-v0.12.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
## [0.11.2](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.11.1...air-parser-v0.11.2) (2024-02-20) ## [0.11.2](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.11.1...air-parser-v0.11.2) (2024-02-20)

View File

@ -1,7 +1,7 @@
[package] [package]
name = "aquavm-air-parser" name = "aquavm-air-parser"
description = "Parser of the AIR scripts in a form of string to AST" description = "Parser of the AIR scripts in a form of string to AST"
version = "0.11.2" version = "0.12.0"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"

View File

@ -32,6 +32,10 @@
* dependencies * dependencies
* aquavm-air-parser bumped from 0.11.1 to 0.11.2 * aquavm-air-parser bumped from 0.11.1 to 0.11.2
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
## [0.7.5](https://github.com/fluencelabs/aquavm/compare/air-execution-info-collector-v0.7.4...air-execution-info-collector-v0.7.5) (2023-06-22) ## [0.7.5](https://github.com/fluencelabs/aquavm/compare/air-execution-info-collector-v0.7.4...air-execution-info-collector-v0.7.5) (2023-06-22)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "air-execution-info-collector" name = "air-execution-info-collector"
version = "0.7.13" version = "0.7.14"
description = "Implementation of AIR execution info collector" description = "Implementation of AIR execution info collector"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -15,4 +15,4 @@ name = "air_execution_info_collector"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
aquavm-air-parser = { version = "0.11.2", path = "../air-parser" } aquavm-air-parser = { version = "0.12.0", path = "../air-parser" }

View File

@ -25,6 +25,11 @@
* dependencies * dependencies
* air-utils bumped from 0.1.1 to 0.2.0 * air-utils bumped from 0.1.1 to 0.2.0
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
* polyplets bumped from 0.6.0 to 0.7.0
## [0.17.1](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.17.0...air-interpreter-data-v0.17.1) (2024-02-20) ## [0.17.1](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.17.0...air-interpreter-data-v0.17.1) (2024-02-20)

View File

@ -1,7 +1,7 @@
[package] [package]
name = "air-interpreter-data" name = "air-interpreter-data"
description = "Data format of the AIR interpreter" description = "Data format of the AIR interpreter"
version = "0.17.1" version = "0.17.2"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
@ -16,12 +16,12 @@ path = "src/lib.rs"
[dependencies] [dependencies]
air-utils = { version = "0.3.0", path = "../utils" } air-utils = { version = "0.3.0", path = "../utils" }
aquavm-air-parser = { version = "0.11.2", path = "../air-parser" } aquavm-air-parser = { version = "0.12.0", path = "../air-parser" }
air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid", features = ["rkyv"] } air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid", features = ["rkyv"] }
air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures", features = ["rkyv"] } air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures", features = ["rkyv"] }
air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede", features = ["msgpack"] } air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede", features = ["msgpack"] }
air-interpreter-value = { version = "0.1.0", path = "../interpreter-value" } air-interpreter-value = { version = "0.1.0", path = "../interpreter-value" }
polyplets = { version = "0.6.0", path = "../polyplets", features = ["rkyv"] } polyplets = { version = "0.7.0", path = "../polyplets", features = ["rkyv"] }
fluence-keypair = { version = "0.10.4", default-features = false } fluence-keypair = { version = "0.10.4", default-features = false }
serde = {version = "1.0.190", features = ["derive", "rc"]} serde = {version = "1.0.190", features = ["derive", "rc"]}

View File

@ -4,6 +4,17 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.19.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.18.0...air-interpreter-interface-v0.19.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
## [0.18.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.17.2...air-interpreter-interface-v0.18.0) (2024-02-20) ## [0.18.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.17.2...air-interpreter-interface-v0.18.0) (2024-02-20)

View File

@ -1,7 +1,7 @@
[package] [package]
name = "air-interpreter-interface" name = "air-interpreter-interface"
description = "Interface of the AIR interpreter" description = "Interface of the AIR interpreter"
version = "0.18.0" version = "0.19.0"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"

View File

@ -4,6 +4,17 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.6.0...polyplets-v0.7.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.5.2...polyplets-v0.6.0) (2024-01-11) ## [0.6.0](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.5.2...polyplets-v0.6.0) (2024-01-11)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "polyplets" name = "polyplets"
version = "0.6.0" version = "0.7.0"
description = "Security primitives to verify origin of service calls in Fluence network" description = "Security primitives to verify origin of service calls in Fluence network"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"

View File

@ -71,6 +71,28 @@
* avm-interface bumped from 0.30.0 to 0.31.0 * avm-interface bumped from 0.30.0 to 0.31.0
* avm-server bumped from 0.34.0 to 0.34.1 * avm-server bumped from 0.34.0 to 0.34.1
## [0.17.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.16.0...air-test-utils-v0.17.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.60.0 to 0.61.0
* air-interpreter-data bumped from 0.17.1 to 0.17.2
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* avm-interface bumped from 0.32.0 to 0.32.1
* avm-server bumped from 0.36.0 to 0.37.0
## [0.16.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.15.1...air-test-utils-v0.16.0) (2024-02-20) ## [0.16.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.15.1...air-test-utils-v0.16.0) (2024-02-20)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "air-test-utils" name = "air-test-utils"
version = "0.16.0" version = "0.17.0"
description = "Test utils for the AIR interpreter" description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -15,14 +15,14 @@ name = "air_test_utils"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
aquavm-air = { version = "0.60.0", path = "../../../air" } aquavm-air = { version = "0.61.0", path = "../../../air" }
air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid" } air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.17.1", path = "../interpreter-data" } air-interpreter-data = { version = "0.17.2", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.18.0", path = "../interpreter-interface" } air-interpreter-interface = { version = "0.19.0", path = "../interpreter-interface" }
air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede" } air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede" }
air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures" } air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures" }
avm-interface = { version = "0.32.0", path = "../../../avm/interface" } avm-interface = { version = "0.32.1", path = "../../../avm/interface" }
avm-server = { version = "0.36.0", path = "../../../avm/server" } avm-server = { version = "0.37.0", path = "../../../avm/server" }
marine-rs-sdk = "0.14.0" marine-rs-sdk = "0.14.0"
object-pool = "0.5.4" object-pool = "0.5.4"

View File

@ -64,6 +64,12 @@
* air-interpreter-data bumped from 0.17.0 to 0.17.1 * air-interpreter-data bumped from 0.17.0 to 0.17.1
* aquavm-air-parser bumped from 0.11.1 to 0.11.2 * aquavm-air-parser bumped from 0.11.1 to 0.11.2
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.17.1 to 0.17.2
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
* polyplets bumped from 0.6.0 to 0.7.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) ## [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] [package]
name = "air-trace-handler" name = "air-trace-handler"
version = "0.5.11" version = "0.5.12"
description = "Implementation of AIR trace handler" description = "Implementation of AIR trace handler"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -14,10 +14,10 @@ path = "src/lib.rs"
[dependencies] [dependencies]
air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid" } air-interpreter-cid = { version = "0.9.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.17.1", path = "../interpreter-data" } air-interpreter-data = { version = "0.17.2", path = "../interpreter-data" }
air-log-targets = { version = "0.1.0", path = "../log-targets" } air-log-targets = { version = "0.1.0", path = "../log-targets" }
aquavm-air-parser = { version = "0.11.2", path = "../air-parser" } aquavm-air-parser = { version = "0.12.0", path = "../air-parser" }
polyplets = { version = "0.6.0", path = "../polyplets" } polyplets = { version = "0.7.0", path = "../polyplets" }
bimap = "0.6.3" bimap = "0.6.3"
serde_json = "1.0.108" serde_json = "1.0.108"

View File

@ -16,6 +16,10 @@
* dependencies * dependencies
* aquavm-air-parser bumped from 0.11.1 to 0.11.2 * aquavm-air-parser bumped from 0.11.1 to 0.11.2
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
## [0.4.0](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.3.1...air-beautifier-v0.4.0) (2023-12-12) ## [0.4.0](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.3.1...air-beautifier-v0.4.0) (2023-12-12)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "air-beautifier" name = "air-beautifier"
version = "0.4.2" version = "0.4.3"
description = "AIR human-readable format transformer library" description = "AIR human-readable format transformer library"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -14,6 +14,6 @@ name = "air_beautifier"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
aquavm-air-parser = { version = "0.11.2", path = "../air-lib/air-parser" } aquavm-air-parser = { version = "0.12.0", path = "../air-lib/air-parser" }
itertools = "0.10.5" itertools = "0.10.5"
thiserror = "1.0.50" thiserror = "1.0.50"

View File

@ -48,6 +48,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies * dependencies
* avm-interface bumped from 0.31.2 to 0.32.0 * avm-interface bumped from 0.31.2 to 0.32.0
* The following workspace dependencies were updated
* dependencies
* avm-interface bumped from 0.32.0 to 0.32.1
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.6.3...avm-data-store-v0.7.0) (2023-08-17) ## [0.7.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.6.3...avm-data-store-v0.7.0) (2023-08-17)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "avm-data-store" name = "avm-data-store"
version = "0.7.8" version = "0.7.9"
description = "Definition of the AVM DataStore trait" description = "Definition of the AVM DataStore trait"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -15,7 +15,7 @@ name = "avm_data_store"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
avm-interface = { version = "0.32.0", path = "../../avm/interface"} avm-interface = { version = "0.32.1", path = "../../avm/interface"}
serde = { version = "1.0.190", features = ["derive"] } serde = { version = "1.0.190", features = ["derive"] }
serde_bytes = "0.11.9" serde_bytes = "0.11.9"

View File

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

View File

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

View File

@ -75,6 +75,25 @@
* dependencies * dependencies
* air-test-utils bumped from 0.15.0 to 0.15.1 * air-test-utils bumped from 0.15.0 to 0.15.1
## [0.10.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.9.0...air-testing-framework-v0.10.0) (2024-02-22)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))
### Features
* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.16.0 to 0.17.0
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
## [0.9.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.8.4...air-testing-framework-v0.9.0) (2024-02-20) ## [0.9.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.8.4...air-testing-framework-v0.9.0) (2024-02-20)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "air-testing-framework" name = "air-testing-framework"
version = "0.9.0" version = "0.10.0"
description = "AquaVM testing framework" description = "AquaVM testing framework"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
@ -14,8 +14,8 @@ name = "air_test_framework"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
air-test-utils = { version = "0.16.0", path = "../air-lib/test-utils" } air-test-utils = { version = "0.17.0", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.11.2", path = "../air-lib/air-parser" } aquavm-air-parser = { version = "0.12.0", path = "../air-lib/air-parser" }
itertools = "0.10.5" itertools = "0.10.5"
fluence-keypair = "0.10.4" fluence-keypair = "0.10.4"

View File

@ -127,6 +127,17 @@
* air-interpreter-interface bumped from 0.17.1 to 0.17.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 * air-test-utils bumped from 0.15.0 to 0.15.1
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.60.0 to 0.61.0
* air-beautifier bumped from 0.4.2 to 0.4.3
* avm-data-store bumped from 0.7.8 to 0.7.9
* avm-interface bumped from 0.32.0 to 0.32.1
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* air-interpreter-data bumped from 0.17.1 to 0.17.2
* avm-server bumped from 0.36.0 to 0.37.0
* air-test-utils bumped from 0.16.0 to 0.17.0
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.6.3...aquavm-air-cli-v0.7.0) (2024-02-20) ## [0.7.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.6.3...aquavm-air-cli-v0.7.0) (2024-02-20)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "aquavm-air-cli" name = "aquavm-air-cli"
version = "0.7.0" version = "0.7.1"
edition = "2021" edition = "2021"
description = "AIR execution and printing tool" description = "AIR execution and printing tool"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
@ -10,15 +10,15 @@ documentation = "https://docs.rs/aquavm-air-cli"
keywords = ["fluence", "air", "tracing"] keywords = ["fluence", "air", "tracing"]
[dependencies] [dependencies]
aquavm-air = { version = "0.60.0", path = "../../../air" } aquavm-air = { version = "0.61.0", path = "../../../air" }
air-beautifier = { version = "0.4.2", path = "../../../crates/beautifier" } air-beautifier = { version = "0.4.3", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.7.8", path = "../../../crates/data-store" } avm-data-store = { version = "0.7.9", path = "../../../crates/data-store" }
avm-interface = { version = "0.32.0", path = "../../../avm/interface" } avm-interface = { version = "0.32.1", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.18.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false } air-interpreter-interface = { version = "0.19.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-data = { version = "0.17.1", path = "../../../crates/air-lib/interpreter-data" } air-interpreter-data = { version = "0.17.2", path = "../../../crates/air-lib/interpreter-data" }
air-interpreter-sede = { version = "0.1.0", path = "../../../crates/air-lib/interpreter-sede", default-features = false } air-interpreter-sede = { version = "0.1.0", path = "../../../crates/air-lib/interpreter-sede", default-features = false }
avm-server = { version = "0.36.0", path = "../../../avm/server" } avm-server = { version = "0.37.0", path = "../../../avm/server" }
air-test-utils = { version = "0.16.0",path = "../../../crates/air-lib/test-utils", optional = true } air-test-utils = { version = "0.17.0",path = "../../../crates/air-lib/test-utils", optional = true }
clap = { version = "4.4.7", features = ["derive", "env"] } clap = { version = "4.4.7", features = ["derive", "env"] }
eyre = "0.6.11" eyre = "0.6.11"

View File

@ -36,6 +36,10 @@
* dependencies * dependencies
* air-beautifier bumped from 0.4.1 to 0.4.2 * air-beautifier bumped from 0.4.1 to 0.4.2
* The following workspace dependencies were updated
* dependencies
* air-beautifier bumped from 0.4.2 to 0.4.3
## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-beautify-wasm-v0.2.1...air-beautify-wasm-v0.3.0) (2023-06-23) ## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-beautify-wasm-v0.2.1...air-beautify-wasm-v0.3.0) (2023-06-23)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "air-beautify-wasm" name = "air-beautify-wasm"
version = "0.3.8" version = "0.3.9"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
description = "WASM module for air-beautify" description = "WASM module for air-beautify"
@ -14,4 +14,4 @@ crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
# 0.2.79: a function can return Result<..., JsError>. # 0.2.79: a function can return Result<..., JsError>.
wasm-bindgen = { version = "=0.2.83", features = ["serde-serialize"] } wasm-bindgen = { version = "=0.2.83", features = ["serde-serialize"] }
air-beautifier = { version = "0.4.2", path = "../../../crates/beautifier" } air-beautifier = { version = "0.4.3", path = "../../../crates/beautifier" }

View File

@ -41,7 +41,7 @@ dependencies = [
[[package]] [[package]]
name = "air-execution-info-collector" name = "air-execution-info-collector"
version = "0.7.13" version = "0.7.14"
dependencies = [ dependencies = [
"aquavm-air-parser", "aquavm-air-parser",
] ]
@ -64,7 +64,7 @@ dependencies = [
[[package]] [[package]]
name = "air-interpreter-data" name = "air-interpreter-data"
version = "0.17.1" version = "0.17.2"
dependencies = [ dependencies = [
"air-interpreter-cid", "air-interpreter-cid",
"air-interpreter-sede", "air-interpreter-sede",
@ -89,7 +89,7 @@ dependencies = [
[[package]] [[package]]
name = "air-interpreter-interface" name = "air-interpreter-interface"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"air-interpreter-sede", "air-interpreter-sede",
"air-interpreter-value", "air-interpreter-value",
@ -164,7 +164,7 @@ version = "0.1.0"
[[package]] [[package]]
name = "air-near-contract" name = "air-near-contract"
version = "0.60.0" version = "0.61.0"
dependencies = [ dependencies = [
"air-interpreter-interface", "air-interpreter-interface",
"aquavm-air", "aquavm-air",
@ -176,7 +176,7 @@ dependencies = [
[[package]] [[package]]
name = "air-trace-handler" name = "air-trace-handler"
version = "0.5.11" version = "0.5.12"
dependencies = [ dependencies = [
"air-interpreter-cid", "air-interpreter-cid",
"air-interpreter-data", "air-interpreter-data",
@ -212,7 +212,7 @@ dependencies = [
[[package]] [[package]]
name = "aquavm-air" name = "aquavm-air"
version = "0.60.0" version = "0.61.0"
dependencies = [ dependencies = [
"air-execution-info-collector", "air-execution-info-collector",
"air-interpreter-cid", "air-interpreter-cid",
@ -247,7 +247,7 @@ dependencies = [
[[package]] [[package]]
name = "aquavm-air-parser" name = "aquavm-air-parser"
version = "0.11.2" version = "0.12.0"
dependencies = [ dependencies = [
"air-interpreter-value", "air-interpreter-value",
"air-lambda-ast", "air-lambda-ast",
@ -1479,9 +1479,9 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]] [[package]]
name = "marine-call-parameters" name = "marine-call-parameters"
version = "0.10.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef9a7c6ed5fa9052474c1cd76d3b3e67dbc4c455c76263c2c043214e12cce6bd" checksum = "05495180730abae04abe209386ce367309a82110edb65fcdb1f3080f819bc1a0"
dependencies = [ dependencies = [
"marine-macro", "marine-macro",
"marine-rs-sdk-main", "marine-rs-sdk-main",
@ -1491,9 +1491,9 @@ dependencies = [
[[package]] [[package]]
name = "marine-macro" name = "marine-macro"
version = "0.10.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acdaa50f8239afa104ef8a99d4219288f68169e29c913485bbd094a35fe79113" checksum = "f502185316f584a9373cceb6ff24a11d260dfd39505c817056bc127cd1a96a08"
dependencies = [ dependencies = [
"marine-macro-impl", "marine-macro-impl",
"marine-rs-sdk-main", "marine-rs-sdk-main",
@ -1501,9 +1501,9 @@ dependencies = [
[[package]] [[package]]
name = "marine-macro-impl" name = "marine-macro-impl"
version = "0.10.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "460ef42c1bf6dbb88976a00514f8e1b97a7ccb60e3e6009cbb563b0d163166c7" checksum = "e50fbc0e70ee4cde7802f0748acfb197d7770c7feffb980ce8c29bddd007519e"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -1514,9 +1514,9 @@ dependencies = [
[[package]] [[package]]
name = "marine-rs-sdk" name = "marine-rs-sdk"
version = "0.10.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "034cab8adf708e87db08f093e0c7b8ea49359cc875ed2a778c1bf245b5d9d9f8" checksum = "f93d2bd852fea1fea8097c195044430347eda98fd6a3752119b549192d5ac4ba"
dependencies = [ dependencies = [
"marine-call-parameters", "marine-call-parameters",
"marine-macro", "marine-macro",
@ -1527,9 +1527,9 @@ dependencies = [
[[package]] [[package]]
name = "marine-rs-sdk-main" name = "marine-rs-sdk-main"
version = "0.10.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "031eeea016dab58c1ccb0c65b798cb5e47d214b05115c8c06198717d18275756" checksum = "0b79c165fc21438b069babeec5ae36ba0eade5e08fb1d92dabbe6b41014ce841"
dependencies = [ dependencies = [
"log", "log",
"serde", "serde",
@ -1537,9 +1537,9 @@ dependencies = [
[[package]] [[package]]
name = "marine-timestamp-macro" name = "marine-timestamp-macro"
version = "0.10.3" version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f812a03cb13b79ab75e38053a77ecc4b4738a1b485b650d971dec3dbbcb2561" checksum = "d03f267ac0a29f543ef12a1a519ff8d98e74ac66e1c580f2930d41ce2c50507d"
dependencies = [ dependencies = [
"chrono", "chrono",
"quote", "quote",
@ -2048,7 +2048,7 @@ checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8"
[[package]] [[package]]
name = "polyplets" name = "polyplets"
version = "0.6.0" version = "0.7.0"
dependencies = [ dependencies = [
"marine-call-parameters", "marine-call-parameters",
"serde", "serde",

View File

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