chore: release master (#614)

* chore: release master

* chore: Bump air-interpreter version to 0.41.0
This commit is contained in:
fluencebot 2023-06-23 18:38:43 +03:00 committed by GitHub
parent 5e36c223a4
commit e4665a55fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 113 additions and 29 deletions

View File

@ -1,22 +1,22 @@
{
"air": "0.40.0",
"air-interpreter": "0.40.0",
"air": "0.41.0",
"air-interpreter": "0.41.0",
"avm/interface": "0.28.4",
"avm/server": "0.32.0",
"avm/client": "0.40.0",
"avm/client": "0.41.0",
"crates/air-lib/air-parser": "0.7.5",
"crates/air-lib/execution-info-collector": "0.7.5",
"crates/air-lib/interpreter-cid": "0.3.0",
"crates/air-lib/interpreter-data": "0.8.0",
"crates/air-lib/test-utils": "0.6.0",
"crates/air-lib/test-utils": "0.7.0",
"crates/air-lib/trace-handler": "0.2.1",
"crates/air-lib/utils": "0.1.1",
"crates/beautifier": "0.1.4",
"crates/data-store": "0.6.2",
"crates/testing-framework": "0.2.1",
"crates/testing-framework": "0.3.0",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.2.1",
"tools/cli/air": "0.3.0",
"tools/wasm/air-beautify-wasm": "0.3.0",
"tools/cli/air": "0.3.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",

12
Cargo.lock generated
View File

@ -42,7 +42,7 @@ dependencies = [
[[package]]
name = "air-beautify-wasm"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"air-beautifier",
"wasm-bindgen",
@ -57,7 +57,7 @@ dependencies = [
[[package]]
name = "air-interpreter"
version = "0.40.0"
version = "0.41.0"
dependencies = [
"air-interpreter-interface",
"air-log-targets",
@ -154,7 +154,7 @@ version = "0.1.0"
[[package]]
name = "air-test-utils"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -178,7 +178,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.2.1"
version = "0.3.0"
dependencies = [
"air-test-utils",
"aquavm-air-parser",
@ -300,7 +300,7 @@ checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
[[package]]
name = "aquavm-air"
version = "0.40.0"
version = "0.41.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -341,7 +341,7 @@ dependencies = [
[[package]]
name = "aquavm-air-cli"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"air-beautifier",
"air-interpreter-interface",

View File

@ -1,5 +1,19 @@
# Changelog
## [0.41.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.40.0...air-interpreter-v0.41.0) (2023-06-23)
### Miscellaneous Chores
* **air-interpreter:** Synchronize air-interpreter versions
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.40.0 to 0.41.0
## [0.40.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.39.0...air-interpreter-v0.40.0) (2023-06-22)

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.40.0"
version = "0.41.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.40.0", path = "../air" }
aquavm-air = { version = "0.41.0", path = "../air" }
air-interpreter-interface = { version = "0.14.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,16 @@
# Changelog
## [0.41.0](https://github.com/fluencelabs/aquavm/compare/air-v0.40.0...air-v0.41.0) (2023-06-23)
### ⚠ BREAKING CHANGES
* **testing-framework:** restore WASM test executor ([#609](https://github.com/fluencelabs/aquavm/issues/609))
### Miscellaneous Chores
* **testing-framework:** restore WASM test executor ([#609](https://github.com/fluencelabs/aquavm/issues/609)) ([c332cca](https://github.com/fluencelabs/aquavm/commit/c332cca6b75e804412e1f1cc51bdfe0580ea5fdd))
## [0.40.0](https://github.com/fluencelabs/aquavm/compare/air-v0.39.0...air-v0.40.0) (2023-06-22)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.40.0"
version = "0.41.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"

View File

@ -1,5 +1,12 @@
# Changelog
## [0.41.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.40.0...avm-client-v0.41.0) (2023-06-23)
### Miscellaneous Chores
* **avm-client:** Synchronize air-interpreter versions
## [0.40.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.39.0...avm-client-v0.40.0) (2023-06-22)

View File

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

View File

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

View File

@ -22,6 +22,24 @@
* avm-interface bumped from 0.28.2 to 0.28.3
* avm-server bumped from 0.30.1 to 0.31.0
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.6.0...air-test-utils-v0.7.0) (2023-06-23)
### ⚠ BREAKING CHANGES
* **testing-framework:** restore WASM test executor ([#609](https://github.com/fluencelabs/aquavm/issues/609))
### Miscellaneous Chores
* **testing-framework:** restore WASM test executor ([#609](https://github.com/fluencelabs/aquavm/issues/609)) ([c332cca](https://github.com/fluencelabs/aquavm/commit/c332cca6b75e804412e1f1cc51bdfe0580ea5fdd))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.40.0 to 0.41.0
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.5.0...air-test-utils-v0.6.0) (2023-06-22)

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.6.0"
version = "0.7.0"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
@ -15,7 +15,7 @@ name = "air_test_utils"
path = "src/lib.rs"
[dependencies]
aquavm-air = { version = "0.40.0", path = "../../../air" }
aquavm-air = { version = "0.41.0", path = "../../../air" }
air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.8.0", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.14.0", path = "../interpreter-interface" }

View File

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

View File

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

View File

@ -13,6 +13,24 @@
* dev-dependencies
* air-test-utils bumped from 0.5.0 to 0.6.0
## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.2.1...air-testing-framework-v0.3.0) (2023-06-23)
### ⚠ BREAKING CHANGES
* **testing-framework:** restore WASM test executor ([#609](https://github.com/fluencelabs/aquavm/issues/609))
### Miscellaneous Chores
* **testing-framework:** restore WASM test executor ([#609](https://github.com/fluencelabs/aquavm/issues/609)) ([c332cca](https://github.com/fluencelabs/aquavm/commit/c332cca6b75e804412e1f1cc51bdfe0580ea5fdd))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.6.0 to 0.7.0
## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.1.7...air-testing-framework-v0.2.0) (2023-03-21)

View File

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

View File

@ -26,6 +26,11 @@
* aquavm-air bumped from 0.38.0 to 0.39.0
* air-test-utils bumped from 0.4.7 to 0.5.0
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.40.0 to 0.41.0
* air-test-utils bumped from 0.6.0 to 0.7.0
## [0.3.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.2.9...aquavm-air-cli-v0.3.0) (2023-06-22)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air-cli"
version = "0.3.0"
version = "0.3.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.40.0", path = "../../../air" }
aquavm-air = { version = "0.41.0", path = "../../../air" }
air-beautifier = { version = "0.1.4", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.6.2", path = "../../../crates/data-store" }
avm-interface = { version = "0.28.4", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.14.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.6.0",path = "../../../crates/air-lib/test-utils", optional = true }
air-test-utils = { version = "0.7.0",path = "../../../crates/air-lib/test-utils", optional = true }
anyhow = "1.0.70"
clap = { version = "4.2.7", features = ["derive", "env"] }

View File

@ -4,6 +4,17 @@
* dependencies
* air-beautifier bumped from 0.1.3 to 0.1.4
## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-beautify-wasm-v0.2.1...air-beautify-wasm-v0.3.0) (2023-06-23)
### ⚠ BREAKING CHANGES
* this package is now intended for use in nodejs
### Features
* set nodejs target for air-beautify ([#613](https://github.com/fluencelabs/aquavm/issues/613)) ([5e36c22](https://github.com/fluencelabs/aquavm/commit/5e36c223a43c6705e4f1e55246a25d9888a91786))
## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-beautify-wasm-v0.1.2...air-beautify-wasm-v0.2.0) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package]
name = "air-beautify-wasm"
version = "0.2.1"
version = "0.3.0"
authors = ["Fluence Labs"]
edition = "2021"
description = "WASM module for air-beautify"