chore: release master (#720)

* chore: release master

* chore: Bump air-interpreter and air-near-contract version to 0.52.0
This commit is contained in:
fluencebot 2023-10-16 16:01:49 +03:00 committed by GitHub
parent cdcb86cb55
commit d2ad221597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
31 changed files with 159 additions and 67 deletions

View File

@ -1,22 +1,22 @@
{
"air": "0.51.0",
"air-interpreter": "0.51.0",
"avm/interface": "0.29.1",
"avm/server": "0.33.1",
"avm/client": "0.51.0",
"air": "0.52.0",
"air-interpreter": "0.52.0",
"avm/interface": "0.29.2",
"avm/server": "0.33.2",
"avm/client": "0.52.0",
"crates/air-lib/air-parser": "0.10.0",
"crates/air-lib/execution-info-collector": "0.7.10",
"crates/air-lib/interpreter-cid": "0.4.0",
"crates/air-lib/interpreter-data": "0.12.0",
"crates/air-lib/test-utils": "0.11.0",
"crates/air-lib/trace-handler": "0.5.4",
"crates/air-lib/utils": "0.1.1",
"crates/air-lib/interpreter-data": "0.12.1",
"crates/air-lib/test-utils": "0.11.1",
"crates/air-lib/trace-handler": "0.5.5",
"crates/air-lib/utils": "0.2.0",
"crates/beautifier": "0.3.1",
"crates/data-store": "0.7.1",
"crates/testing-framework": "0.7.0",
"crates/data-store": "0.7.2",
"crates/testing-framework": "0.7.1",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.5",
"tools/cli/air": "0.5.0",
"tools/cli/air": "0.5.1",
"crates/air-lib/lambda/ast": "0.1.0",
"crates/air-lib/lambda/parser": "0.1.0",
"crates/air-lib/log-targets": "0.1.0",

22
Cargo.lock generated
View File

@ -78,7 +78,7 @@ dependencies = [
[[package]]
name = "air-interpreter"
version = "0.51.0"
version = "0.52.0"
dependencies = [
"air-interpreter-interface",
"air-log-targets",
@ -105,7 +105,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.12.0"
version = "0.12.1"
dependencies = [
"air-interpreter-cid",
"air-interpreter-signatures",
@ -173,7 +173,7 @@ version = "0.1.0"
[[package]]
name = "air-test-utils"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -196,7 +196,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"air-interpreter-signatures",
"air-test-utils",
@ -213,7 +213,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -230,7 +230,7 @@ dependencies = [
[[package]]
name = "air-utils"
version = "0.1.1"
version = "0.2.0"
[[package]]
name = "ambient-authority"
@ -324,7 +324,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "aquavm-air"
version = "0.51.0"
version = "0.52.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -366,7 +366,7 @@ dependencies = [
[[package]]
name = "aquavm-air-cli"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"air-beautifier",
"air-interpreter-interface",
@ -564,7 +564,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "avm-data-store"
version = "0.7.1"
version = "0.7.2"
dependencies = [
"avm-interface",
"serde",
@ -574,7 +574,7 @@ dependencies = [
[[package]]
name = "avm-interface"
version = "0.29.1"
version = "0.29.2"
dependencies = [
"air-interpreter-interface",
"air-utils",
@ -589,7 +589,7 @@ dependencies = [
[[package]]
name = "avm-server"
version = "0.33.1"
version = "0.33.2"
dependencies = [
"air-interpreter-interface",
"air-utils",

View File

@ -1,5 +1,19 @@
# Changelog
## [0.52.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.51.0...air-interpreter-v0.52.0) (2023-10-16)
### Miscellaneous Chores
* **air-interpreter:** Synchronize air-interpreter versions
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.51.0 to 0.52.0
## [0.51.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.50.0...air-interpreter-v0.51.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.51.0"
version = "0.52.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.51.0", path = "../air" }
aquavm-air = { version = "0.52.0", path = "../air" }
air-interpreter-interface = { version = "0.15.1", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

View File

@ -1,5 +1,25 @@
# Changelog
## [0.52.0](https://github.com/fluencelabs/aquavm/compare/air-v0.51.0...air-v0.52.0) (2023-10-16)
### ⚠ BREAKING CHANGES
* **execution-engine:** intro farewell_if_error_macro ([#719](https://github.com/fluencelabs/aquavm/issues/719))
### Features
* **execution-engine:** intro farewell_if_error_macro ([#719](https://github.com/fluencelabs/aquavm/issues/719)) ([cdcb86c](https://github.com/fluencelabs/aquavm/commit/cdcb86cb554d6462e0a1a50b12aef6571669a7b1))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.12.0 to 0.12.1
* air-trace-handler bumped from 0.5.4 to 0.5.5
* air-utils bumped from 0.1.1 to 0.2.0
## [0.51.0](https://github.com/fluencelabs/aquavm/compare/air-v0.50.0...air-v0.51.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.51.0"
version = "0.52.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
@ -19,14 +19,14 @@ doctest = false
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.4.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.12.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-data = { version = "0.12.1", path = "../crates/air-lib/interpreter-data" }
air-interpreter-signatures = { version = "0.1.2", 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.4", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.1.1", path = "../crates/air-lib/utils" }
air-trace-handler = { version = "0.5.5", 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.1", default-features = false }

View File

@ -1,5 +1,12 @@
# Changelog
## [0.52.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.51.0...avm-client-v0.52.0) (2023-10-16)
### Miscellaneous Chores
* **avm-client:** Synchronize air-interpreter versions
## [0.51.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.50.0...avm-client-v0.51.0) (2023-10-13)

View File

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

View File

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

View File

@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
* polyplets bumped from 0.5.0 to 0.5.1
* The following workspace dependencies were updated
* dependencies
* air-utils bumped from 0.1.1 to 0.2.0
## [0.29.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.28.5...avm-interface-v0.29.0) (2023-08-17)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-interface"
description = "Fluence AIR VM interfacing"
version = "0.29.1"
version = "0.29.2"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -16,7 +16,7 @@ path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.15.1", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" }
air-utils = { version = "0.2.0", path = "../../crates/air-lib/utils" }
polyplets = { version = "0.5.1", path = "../../crates/air-lib/polyplets" }
thiserror = "1.0.40"

View File

@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* polyplets bumped from 0.3.2 to 0.3.3
* avm-interface bumped from 0.28.4 to 0.28.5
* The following workspace dependencies were updated
* dependencies
* air-utils bumped from 0.1.1 to 0.2.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.1](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.33.0...avm-server-v0.33.1) (2023-09-21)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.33.1"
version = "0.33.2"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -16,11 +16,11 @@ path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.15.1", path = "../../crates/air-lib/interpreter-interface" }
air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" }
avm-data-store = { version = "0.7.1", path = "../../crates/data-store" }
air-utils = { version = "0.2.0", path = "../../crates/air-lib/utils" }
avm-data-store = { version = "0.7.2", path = "../../crates/data-store" }
marine-runtime = "0.30.0"
polyplets = { version = "0.5.1", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.29.1", path = "../../avm/interface" }
avm-interface = { version = "0.29.2", path = "../../avm/interface" }
eyre = "0.6.8"
thiserror = "1.0.40"

View File

@ -21,6 +21,10 @@
* aquavm-air-parser bumped from 0.9.0 to 0.10.0
* polyplets bumped from 0.5.0 to 0.5.1
* The following workspace dependencies were updated
* dependencies
* air-utils bumped from 0.1.1 to 0.2.0
## [0.12.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.11.3...air-interpreter-data-v0.12.0) (2023-10-13)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.12.0"
version = "0.12.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -15,7 +15,7 @@ name = "air_interpreter_data"
path = "src/lib.rs"
[dependencies]
air-utils = { version = "0.1.1", path = "../utils" }
air-utils = { version = "0.2.0", path = "../utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
air-interpreter-cid = { version = "0.4.0", path = "../interpreter-cid" }
air-interpreter-signatures = { version = "0.1.2", path = "../interpreter-signatures" }

View File

@ -57,6 +57,13 @@
* dependencies
* aquavm-air bumped from 0.49.0 to 0.50.0
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.51.0 to 0.52.0
* air-interpreter-data bumped from 0.12.0 to 0.12.1
* avm-interface bumped from 0.29.1 to 0.29.2
* avm-server bumped from 0.33.1 to 0.33.2
## [0.11.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.10.6...air-test-utils-v0.11.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.11.0"
version = "0.11.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.51.0", path = "../../../air" }
aquavm-air = { version = "0.52.0", path = "../../../air" }
air-interpreter-cid = { version = "0.4.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.12.0", path = "../interpreter-data" }
air-interpreter-data = { version = "0.12.1", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.15.1", path = "../interpreter-interface" }
avm-interface = { version = "0.29.1", path = "../../../avm/interface" }
avm-server = { version = "0.33.1", path = "../../../avm/server" }
avm-interface = { version = "0.29.2", path = "../../../avm/interface" }
avm-server = { version = "0.33.2", path = "../../../avm/server" }
marine-rs-sdk = "0.10.0"
object-pool = "0.5.4"

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.5.4"
version = "0.5.5"
description = "Implementation of AIR trace handler"
authors = ["Fluence Labs"]
edition = "2018"
@ -14,7 +14,7 @@ path = "src/lib.rs"
[dependencies]
air-interpreter-cid = { version = "0.4.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.12.0", path = "../interpreter-data" }
air-interpreter-data = { version = "0.12.1", path = "../interpreter-data" }
air-log-targets = { version = "0.1.0", path = "../log-targets" }
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
polyplets = { version = "0.5.1", path = "../polyplets" }

View File

@ -1,5 +1,16 @@
# Changelog
## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-utils-v0.1.1...air-utils-v0.2.0) (2023-10-16)
### ⚠ BREAKING CHANGES
* **execution-engine:** intro farewell_if_error_macro ([#719](https://github.com/fluencelabs/aquavm/issues/719))
### Features
* **execution-engine:** intro farewell_if_error_macro ([#719](https://github.com/fluencelabs/aquavm/issues/719)) ([cdcb86c](https://github.com/fluencelabs/aquavm/commit/cdcb86cb554d6462e0a1a50b12aef6571669a7b1))
## [0.1.1](https://github.com/fluencelabs/aquavm/compare/air-utils-v0.1.0...air-utils-v0.1.1) (2023-06-22)

View File

@ -1,6 +1,6 @@
[package]
name = "air-utils"
version = "0.1.1"
version = "0.2.0"
description = "AIR helper funcitions and macros"
authors = ["Fluence Labs"]
edition = "2018"

View File

@ -20,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* avm-interface bumped from 0.29.0 to 0.29.1
* The following workspace dependencies were updated
* dependencies
* avm-interface bumped from 0.29.1 to 0.29.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)

View File

@ -1,6 +1,6 @@
[package]
name = "avm-data-store"
version = "0.7.1"
version = "0.7.2"
description = "Definition of the AVM DataStore trait"
authors = ["Fluence Labs"]
edition = "2018"
@ -15,7 +15,7 @@ name = "avm_data_store"
path = "src/lib.rs"
[dependencies]
avm-interface = { version = "0.29.1", path = "../../avm/interface"}
avm-interface = { version = "0.29.2", path = "../../avm/interface"}
serde = { version = "1.0.164", features = ["derive"] }
serde_bytes = "0.11.9"

View File

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

View File

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

View File

@ -48,6 +48,10 @@
* dependencies
* air-test-utils bumped from 0.10.5 to 0.10.6
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.11.0 to 0.11.1
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.6.1...air-testing-framework-v0.7.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.7.0"
version = "0.7.1"
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.11.0", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.11.1", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"

View File

@ -90,6 +90,13 @@
* aquavm-air bumped from 0.49.0 to 0.50.0
* air-test-utils bumped from 0.10.5 to 0.10.6
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.51.0 to 0.52.0
* avm-data-store bumped from 0.7.1 to 0.7.2
* avm-interface bumped from 0.29.1 to 0.29.2
* air-test-utils bumped from 0.11.0 to 0.11.1
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.4.7...aquavm-air-cli-v0.5.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air-cli"
version = "0.5.0"
version = "0.5.1"
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.51.0", path = "../../../air" }
aquavm-air = { version = "0.52.0", path = "../../../air" }
air-beautifier = { version = "0.3.1", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.7.1", path = "../../../crates/data-store" }
avm-interface = { version = "0.29.1", path = "../../../avm/interface" }
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.11.0",path = "../../../crates/air-lib/test-utils", optional = true }
air-test-utils = { version = "0.11.1",path = "../../../crates/air-lib/test-utils", optional = true }
anyhow = "1.0.75"
clap = { version = "4.4.5", features = ["derive", "env"] }

View File

@ -48,7 +48,7 @@ dependencies = [
[[package]]
name = "air-interpreter-cid"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"cid",
"multihash 0.18.1",
@ -59,7 +59,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.11.3"
version = "0.12.1"
dependencies = [
"air-interpreter-cid",
"air-interpreter-signatures",
@ -89,7 +89,7 @@ dependencies = [
[[package]]
name = "air-interpreter-signatures"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"air-interpreter-cid",
"borsh 0.10.3",
@ -127,7 +127,7 @@ version = "0.1.0"
[[package]]
name = "air-near-contract"
version = "0.50.0"
version = "0.52.0"
dependencies = [
"air-interpreter-interface",
"aquavm-air",
@ -139,7 +139,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.5.3"
version = "0.5.5"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -156,7 +156,7 @@ dependencies = [
[[package]]
name = "air-utils"
version = "0.1.1"
version = "0.2.0"
[[package]]
name = "android-tzdata"
@ -175,7 +175,7 @@ dependencies = [
[[package]]
name = "aquavm-air"
version = "0.50.0"
version = "0.52.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",

View File

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