chore: release master (#454)

* chore: release master

* chore: Bump air-interpreter-wasm version to 0.35.4
This commit is contained in:
fluencebot 2023-02-08 14:28:17 +02:00 committed by GitHub
parent c277676d43
commit 5aa3c75875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 88 additions and 32 deletions

View File

@ -1,19 +1,19 @@
{
"air": "0.35.0",
"air-interpreter": "0.35.3",
"air": "0.35.1",
"air-interpreter": "0.35.4",
"avm/interface": "0.28.1",
"avm/server": "0.28.1",
"crates/air-lib/air-parser": "0.7.2",
"crates/air-lib/execution-info-collector": "0.7.2",
"crates/air-lib/interpreter-cid": "0.2.0",
"crates/air-lib/interpreter-data": "0.6.1",
"crates/air-lib/test-utils": "0.4.1",
"crates/air-lib/trace-handler": "0.1.0",
"crates/air-lib/interpreter-data": "0.6.2",
"crates/air-lib/test-utils": "0.4.2",
"crates/air-lib/trace-handler": "0.1.1",
"crates/air-lib/utils": "0.1.0",
"crates/beautifier": "0.1.1",
"crates/data-store": "0.4.1",
"crates/testing-framework": "0.1.1",
"crates/testing-framework": "0.1.2",
"tools/cli/air-beautify": "0.1.1",
"tools/cli/air-trace": "0.2.3",
"tools/cli/air-trace": "0.2.4",
"tools/wasm/air-beautify-wasm": "0.1.0"
}

14
Cargo.lock generated
View File

@ -13,7 +13,7 @@ dependencies = [
[[package]]
name = "air"
version = "0.35.0"
version = "0.35.1"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -85,7 +85,7 @@ dependencies = [
[[package]]
name = "air-interpreter"
version = "0.35.3"
version = "0.35.4"
dependencies = [
"air",
"air-interpreter-interface",
@ -111,7 +111,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"air-interpreter-cid",
"air-interpreter-interface",
@ -190,7 +190,7 @@ dependencies = [
[[package]]
name = "air-test-utils"
version = "0.4.1"
version = "0.4.2"
dependencies = [
"air",
"air-interpreter-cid",
@ -210,7 +210,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"air-parser",
"air-test-utils",
@ -225,7 +225,7 @@ dependencies = [
[[package]]
name = "air-trace"
version = "0.2.3"
version = "0.2.4"
dependencies = [
"air",
"air-interpreter-interface",
@ -242,7 +242,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.35.3"
version = "0.35.4"
description = "Crate-wrapper for air"
authors = ["Fluence Labs"]
edition = "2018"
@ -18,7 +18,7 @@ name = "air_interpreter_server"
path = "src/marine.rs"
[dependencies]
air = { version = "0.35.0", path = "../air" }
air = { version = "0.35.1", path = "../air" }
air-interpreter-interface = { version = "0.12.1", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

17
air/CHANGELOG.md Normal file
View File

@ -0,0 +1,17 @@
# Changelog
## [0.35.1](https://github.com/fluencelabs/aquavm/compare/air-v0.35.0...air-v0.35.1) (2023-02-08)
### Features
* **tools:** VM-194 performance metering ([#440](https://github.com/fluencelabs/aquavm/issues/440)) ([5fdc8e6](https://github.com/fluencelabs/aquavm/commit/5fdc8e68ac67f502f8ece4d8a5935cf7d478d830))
* **trace-handler:** improve data deserialization version check ([#451](https://github.com/fluencelabs/aquavm/issues/451)) ([367546b](https://github.com/fluencelabs/aquavm/commit/367546b82cd5f133b956857bf48d279512b157b2))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.6.1 to 0.6.2
* air-trace-handler bumped from 0.1.0 to 0.1.1

View File

@ -1,6 +1,6 @@
[package]
name = "air"
version = "0.35.0"
version = "0.35.1"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
@ -18,12 +18,12 @@ doctest = false
air-parser = { version = "0.7.2", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.2", 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.1", path = "../crates/air-lib/interpreter-data" }
air-interpreter-data = { version = "0.6.2", path = "../crates/air-lib/interpreter-data" }
air-interpreter-interface = { version = "0.12.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.1.0", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.1.1", 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,3 +1,12 @@
# Changelog
## [0.6.2](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.6.1...air-interpreter-data-v0.6.2) (2023-02-08)
### Features
* **trace-handler:** improve data deserialization version check ([#451](https://github.com/fluencelabs/aquavm/issues/451)) ([367546b](https://github.com/fluencelabs/aquavm/commit/367546b82cd5f133b956857bf48d279512b157b2))
## Version 0.6.1
[PR](https://github.com/fluencelabs/aquavm/pull/451):

View File

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

View File

@ -0,0 +1,15 @@
# Changelog
## [0.4.2](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.4.1...air-test-utils-v0.4.2) (2023-02-08)
### Features
* **trace-handler:** improve data deserialization version check ([#451](https://github.com/fluencelabs/aquavm/issues/451)) ([367546b](https://github.com/fluencelabs/aquavm/commit/367546b82cd5f133b956857bf48d279512b157b2))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.6.1 to 0.6.2

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.4.1"
version = "0.4.2"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
@ -16,7 +16,7 @@ path = "src/lib.rs"
[dependencies]
air = { path = "../../../air" }
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.1", path = "../interpreter-data" }
air-interpreter-data = { version = "0.6.2", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.12.1", path = "../interpreter-interface" }
avm-interface = { version = "0.28.1", path = "../../../avm/interface" }
avm-server = { version = "0.28.1", path = "../../../avm/server" }

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.1.0"
version = "0.1.1"
description = "Implementation of AIR trace handler"
authors = ["Fluence Labs"]
edition = "2018"
@ -15,7 +15,7 @@ path = "src/lib.rs"
[dependencies]
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.1", path = "../interpreter-data" }
air-interpreter-data = { version = "0.6.2", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.12.1", path = "../interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../log-targets" }
air-parser = { version = "0.7.2", path = "../air-parser" }

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.1.1"
version = "0.1.2"
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.1", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.4.2", path = "../air-lib/test-utils" }
air-parser = { version = "0.7.2", 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.1", path = "../air-lib/test-utils", features = ["test_with_native_code"] }
air-test-utils = { version = "0.4.2", path = "../air-lib/test-utils", features = ["test_with_native_code"] }

View File

@ -1,5 +1,20 @@
# Changelog
## [0.2.4](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.3...air-trace-v0.2.4) (2023-02-08)
### Bug Fixes
* **air-trace:** `air-trace` native-only compilation fix ([#429](https://github.com/fluencelabs/aquavm/issues/429)) ([c35eac0](https://github.com/fluencelabs/aquavm/commit/c35eac0f01f9c0dd147a139cd49389d1c9320601))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air bumped from 0.35.0 to 0.35.1
* air-test-utils bumped from 0.4.1 to 0.4.2
## [0.2.3](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.2...air-trace-v0.2.3) (2023-02-06)

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
description = "AIR performance tracing tool"
authors = ["Fluence Labs"]
@ -9,8 +9,8 @@ publish = false
keywords = ["fluence", "air", "tracing"]
[dependencies]
air = { version = "0.35.0", path = "../../../air" }
air-test-utils = { version = "0.4.1",path = "../../../crates/air-lib/test-utils", optional = true }
air = { version = "0.35.1", path = "../../../air" }
air-test-utils = { version = "0.4.2",path = "../../../crates/air-lib/test-utils", optional = true }
air-interpreter-interface = { version = "0.12.1", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
avm-data-store = { version = "0.4.1", path = "../../../crates/data-store" }
avm-interface = { version = "0.28.1", path = "../../../avm/interface" }