chore: release master (#542)

* chore: release master

* chore: Bump air-interpreter version to 0.39.0
This commit is contained in:
fluencebot 2023-03-23 12:37:30 +02:00 committed by GitHub
parent d5028942e4
commit 28cf5045b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
21 changed files with 150 additions and 37 deletions

View File

@ -1,22 +1,22 @@
{
"air": "0.38.0",
"air-interpreter": "0.38.0",
"air": "0.39.0",
"air-interpreter": "0.39.0",
"avm/interface": "0.28.3",
"avm/server": "0.31.0",
"avm/client": "0.38.0",
"avm/client": "0.39.0",
"crates/air-lib/air-parser": "0.7.4",
"crates/air-lib/execution-info-collector": "0.7.4",
"crates/air-lib/interpreter-cid": "0.2.0",
"crates/air-lib/interpreter-data": "0.6.4",
"crates/air-lib/test-utils": "0.4.7",
"crates/air-lib/trace-handler": "0.1.3",
"crates/air-lib/interpreter-data": "0.7.0",
"crates/air-lib/test-utils": "0.5.0",
"crates/air-lib/trace-handler": "0.2.0",
"crates/air-lib/utils": "0.1.0",
"crates/beautifier": "0.1.3",
"crates/data-store": "0.6.1",
"crates/testing-framework": "0.1.7",
"crates/testing-framework": "0.2.0",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.2.0",
"tools/cli/air": "0.2.8",
"tools/cli/air": "0.2.9",
"crates/air-lib/lambda/ast": "0.1.0",
"crates/air-lib/lambda/parser": "0.1.0",
"crates/air-lib/log-targets": "0.1.0",

14
Cargo.lock generated
View File

@ -57,7 +57,7 @@ dependencies = [
[[package]]
name = "air-interpreter"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"air-interpreter-interface",
"air-log-targets",
@ -83,7 +83,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.6.4"
version = "0.7.0"
dependencies = [
"air-interpreter-cid",
"air-interpreter-interface",
@ -140,7 +140,7 @@ version = "0.1.0"
[[package]]
name = "air-test-utils"
version = "0.4.7"
version = "0.5.0"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -160,7 +160,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.1.7"
version = "0.2.0"
dependencies = [
"air-test-utils",
"aquavm-air-parser",
@ -175,7 +175,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.1.3"
version = "0.2.0"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -232,7 +232,7 @@ checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
[[package]]
name = "aquavm-air"
version = "0.38.0"
version = "0.39.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -271,7 +271,7 @@ dependencies = [
[[package]]
name = "aquavm-air-cli"
version = "0.2.8"
version = "0.2.9"
dependencies = [
"air-beautifier",
"air-interpreter-interface",

View File

@ -1,5 +1,19 @@
# Changelog
## [0.39.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.38.0...air-interpreter-v0.39.0) (2023-03-21)
### Miscellaneous Chores
* **air-interpreter:** Synchronize air-interpreter versions
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.38.0 to 0.39.0
## [0.38.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.37.1...air-interpreter-v0.38.0) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.38.0"
version = "0.39.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.38.0", path = "../air" }
aquavm-air = { version = "0.39.0", path = "../air" }
air-interpreter-interface = { version = "0.13.0", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

View File

@ -1,5 +1,24 @@
# Changelog
## [0.39.0](https://github.com/fluencelabs/aquavm/compare/air-v0.38.0...air-v0.39.0) (2023-03-21)
### ⚠ BREAKING CHANGES
* **interpreter-data:**
### Features
* **interpreter-data:** New data format for calls ([#501](https://github.com/fluencelabs/aquavm/issues/501)) ([d502894](https://github.com/fluencelabs/aquavm/commit/d5028942e41e1ac47ce31e20b57c17895f543ac8))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.6.4 to 0.7.0
* air-trace-handler bumped from 0.1.3 to 0.2.0
## [0.38.0](https://github.com/fluencelabs/aquavm/compare/air-v0.37.1...air-v0.38.0) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.38.0"
version = "0.39.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
@ -19,12 +19,12 @@ doctest = false
aquavm-air-parser = { version = "0.7.4", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.4", path = "../crates/air-lib/execution-info-collector" }
air-interpreter-cid = { version = "0.2.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.6.4", path = "../crates/air-lib/interpreter-data" }
air-interpreter-data = { version = "0.7.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-interface = { version = "0.13.0", 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.1.3", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.2.0", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.1.0", path = "../crates/air-lib/utils" }
polyplets = { version = "0.3.2", path = "../crates/air-lib/polyplets" }

View File

@ -1,5 +1,12 @@
# Changelog
## [0.39.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.38.0...avm-client-v0.39.0) (2023-03-21)
### Miscellaneous Chores
* **avm-client:** Synchronize air-interpreter versions
## [0.38.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.37.1...avm-client-v0.38.0) (2023-03-15)

View File

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

View File

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

View File

@ -4,6 +4,17 @@
* dependencies
* air-parser bumped from 0.7.2 to 0.7.3
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.6.4...air-interpreter-data-v0.7.0) (2023-03-21)
### ⚠ BREAKING CHANGES
* **interpreter-data:**
### Features
* **interpreter-data:** New data format for calls ([#501](https://github.com/fluencelabs/aquavm/issues/501)) ([d502894](https://github.com/fluencelabs/aquavm/commit/d5028942e41e1ac47ce31e20b57c17895f543ac8))
## [0.6.4](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.6.3...air-interpreter-data-v0.6.4) (2023-03-15)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.6.4"
version = "0.7.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -22,6 +22,25 @@
* avm-interface bumped from 0.28.2 to 0.28.3
* avm-server bumped from 0.30.1 to 0.31.0
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.4.7...air-test-utils-v0.5.0) (2023-03-21)
### ⚠ BREAKING CHANGES
* **interpreter-data:**
### Features
* **interpreter-data:** New data format for calls ([#501](https://github.com/fluencelabs/aquavm/issues/501)) ([d502894](https://github.com/fluencelabs/aquavm/commit/d5028942e41e1ac47ce31e20b57c17895f543ac8))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.38.0 to 0.39.0
* air-interpreter-data bumped from 0.6.4 to 0.7.0
## [0.4.6](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.4.5...air-test-utils-v0.4.6) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.4.7"
version = "0.5.0"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
@ -15,9 +15,9 @@ name = "air_test_utils"
path = "src/lib.rs"
[dependencies]
aquavm-air = { version = "0.38.0", path = "../../../air" }
aquavm-air = { version = "0.39.0", path = "../../../air" }
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.4", path = "../interpreter-data" }
air-interpreter-data = { version = "0.7.0", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.13.0", path = "../interpreter-interface" }
avm-interface = { version = "0.28.3", path = "../../../avm/interface" }
avm-server = { version = "0.31.0", path = "../../../avm/server" }

View File

@ -1,5 +1,23 @@
# Changelog
## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.1.3...air-trace-handler-v0.2.0) (2023-03-21)
### ⚠ BREAKING CHANGES
* **interpreter-data:**
### Features
* **interpreter-data:** New data format for calls ([#501](https://github.com/fluencelabs/aquavm/issues/501)) ([d502894](https://github.com/fluencelabs/aquavm/commit/d5028942e41e1ac47ce31e20b57c17895f543ac8))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.6.4 to 0.7.0
## [0.1.3](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.1.2...air-trace-handler-v0.1.3) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.1.3"
version = "0.2.0"
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.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.4", path = "../interpreter-data" }
air-interpreter-data = { version = "0.7.0", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.13.0", path = "../interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../log-targets" }
aquavm-air-parser = { version = "0.7.4", path = "../air-parser" }

View File

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

View File

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

View File

@ -6,6 +6,26 @@
* dev-dependencies
* air-test-utils bumped from 0.4.6 to 0.4.7
## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.1.7...air-testing-framework-v0.2.0) (2023-03-21)
### ⚠ BREAKING CHANGES
* **interpreter-data:**
### Features
* **interpreter-data:** New data format for calls ([#501](https://github.com/fluencelabs/aquavm/issues/501)) ([d502894](https://github.com/fluencelabs/aquavm/commit/d5028942e41e1ac47ce31e20b57c17895f543ac8))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.4.7 to 0.5.0
* dev-dependencies
* air-test-utils bumped from 0.4.7 to 0.5.0
## [0.1.6](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.1.5...air-testing-framework-v0.1.6) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.1.7"
version = "0.2.0"
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.4.7", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.5.0", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.7.4", path = "../air-lib/air-parser" }
itertools = "0.10.5"
@ -28,4 +28,4 @@ maplit = "1.0.2"
pretty_assertions = "1.3.0"
# We do not want to depend on wasm binary path
air-test-utils = { version = "0.4.7", path = "../air-lib/test-utils", features = ["test_with_native_code"] }
air-test-utils = { version = "0.5.0", path = "../air-lib/test-utils", features = ["test_with_native_code"] }

View File

@ -21,6 +21,11 @@
* air-interpreter-interface bumped from 0.12.1 to 0.13.0
* air-test-utils bumped from 0.4.6 to 0.4.7
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.38.0 to 0.39.0
* air-test-utils bumped from 0.4.7 to 0.5.0
## [0.2.6](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.5...air-trace-v0.2.6) (2023-03-13)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air-cli"
version = "0.2.8"
version = "0.2.9"
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.38.0", path = "../../../air" }
aquavm-air = { version = "0.39.0", path = "../../../air" }
air-beautifier = { version = "0.1.3", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.6.1", path = "../../../crates/data-store" }
avm-interface = { version = "0.28.3", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.13.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.4.7",path = "../../../crates/air-lib/test-utils", optional = true }
air-test-utils = { version = "0.5.0",path = "../../../crates/air-lib/test-utils", optional = true }
anyhow = "1.0.70"
clap = { version = "4.1.11", features = ["derive", "env"] }