chore: release master (#488)

* chore: release master

* chore: Bump air-interpreter version to 0.35.5
This commit is contained in:
fluencebot 2023-02-27 16:24:49 +02:00 committed by GitHub
parent b4818c57de
commit 357ae63732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 92 additions and 30 deletions

View File

@ -1,20 +1,20 @@
{
"air": "0.35.4",
"air-interpreter": "0.35.4",
"air": "0.36.0",
"air-interpreter": "0.35.5",
"avm/interface": "0.28.2",
"avm/server": "0.29.0",
"avm/server": "0.30.0",
"avm/client": "0.35.4",
"crates/air-lib/air-parser": "0.7.3",
"crates/air-lib/execution-info-collector": "0.7.2",
"crates/air-lib/interpreter-cid": "0.2.0",
"crates/air-lib/interpreter-data": "0.6.2",
"crates/air-lib/test-utils": "0.4.2",
"crates/air-lib/test-utils": "0.4.4",
"crates/air-lib/trace-handler": "0.1.1",
"crates/air-lib/utils": "0.1.0",
"crates/beautifier": "0.1.1",
"crates/data-store": "0.5.0",
"crates/testing-framework": "0.1.2",
"crates/data-store": "0.6.0",
"crates/testing-framework": "0.1.4",
"tools/cli/air-beautify": "0.1.1",
"tools/cli/air-trace": "0.2.4",
"tools/cli/air-trace": "0.2.5",
"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.1"
version = "0.36.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -85,7 +85,7 @@ dependencies = [
[[package]]
name = "air-interpreter"
version = "0.35.4"
version = "0.35.5"
dependencies = [
"air",
"air-interpreter-interface",
@ -190,7 +190,7 @@ dependencies = [
[[package]]
name = "air-test-utils"
version = "0.4.2"
version = "0.4.4"
dependencies = [
"air",
"air-interpreter-cid",
@ -210,7 +210,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.1.2"
version = "0.1.4"
dependencies = [
"air-parser",
"air-test-utils",
@ -225,7 +225,7 @@ dependencies = [
[[package]]
name = "air-trace"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"air",
"air-interpreter-interface",
@ -331,7 +331,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "avm-data-store"
version = "0.4.1"
version = "0.6.0"
dependencies = [
"avm-interface",
"serde",
@ -356,7 +356,7 @@ dependencies = [
[[package]]
name = "avm-server"
version = "0.28.1"
version = "0.30.0"
dependencies = [
"air-interpreter-interface",
"air-utils",

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.35.4"
version = "0.35.5"
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.1", path = "../air" }
air = { version = "0.36.0", 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" }

View File

@ -1,5 +1,18 @@
# Changelog
## [0.36.0](https://github.com/fluencelabs/aquavm/compare/air-v0.35.4...air-v0.36.0) (2023-02-27)
### ⚠ BREAKING CHANGES
* **execution-engine:** make fold convergent wrt errors ([#351](https://github.com/fluencelabs/aquavm/issues/351))
### Features
* **execution-engine:** make fold convergent wrt errors ([#351](https://github.com/fluencelabs/aquavm/issues/351)) ([87f7e2f](https://github.com/fluencelabs/aquavm/commit/87f7e2f361891c84315f310967517ddb50773f8d))
* **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))
## [0.35.1](https://github.com/fluencelabs/aquavm/compare/air-v0.35.0...air-v0.35.1) (2023-02-08)

View File

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

View File

@ -4,6 +4,24 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.30.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.29.0...avm-server-v0.30.0) (2023-02-27)
### ⚠ BREAKING CHANGES
* **data_store:** use particle_id + current_peer_id as prev_data key in DataStore ([#485](https://github.com/fluencelabs/aquavm/issues/485))
### Bug Fixes
* **data_store:** use particle_id + current_peer_id as prev_data key in DataStore ([#485](https://github.com/fluencelabs/aquavm/issues/485)) ([36e1c87](https://github.com/fluencelabs/aquavm/commit/36e1c8762c1888f375adacc21907d98a811d28d9))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* avm-data-store bumped from 0.5.0 to 0.6.0
## [0.29.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.28.1...avm-server-v0.29.0) (2023-02-21)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.29.0"
version = "0.30.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -17,7 +17,7 @@ path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.12.1", path = "../../crates/air-lib/interpreter-interface" }
air-utils = { version = "0.1.0", path = "../../crates/air-lib/utils" }
avm-data-store = { version = "0.5.0", path = "../../crates/data-store" }
avm-data-store = { version = "0.6.0", path = "../../crates/data-store" }
marine-runtime = "0.24.1"
polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.28.2", path = "../../avm/interface" }

View File

@ -6,6 +6,10 @@
* avm-interface bumped from 0.28.1 to 0.28.2
* avm-server bumped from 0.28.1 to 0.29.0
* The following workspace dependencies were updated
* dependencies
* avm-server bumped from 0.29.0 to 0.30.0
## [0.4.2](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.4.1...air-test-utils-v0.4.2) (2023-02-08)

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.4.3"
version = "0.4.4"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
@ -19,7 +19,7 @@ air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.3", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.12.1", path = "../interpreter-interface" }
avm-interface = { version = "0.28.2", path = "../../../avm/interface" }
avm-server = { version = "0.29.0", path = "../../../avm/server" }
avm-server = { version = "0.30.0", path = "../../../avm/server" }
marine-rs-sdk = "0.7.1"
fstrings = "0.2.3"

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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.5.0...avm-data-store-v0.6.0) (2023-02-27)
### ⚠ BREAKING CHANGES
* **data_store:** use particle_id + current_peer_id as prev_data key in DataStore ([#485](https://github.com/fluencelabs/aquavm/issues/485))
### Bug Fixes
* **data_store:** use particle_id + current_peer_id as prev_data key in DataStore ([#485](https://github.com/fluencelabs/aquavm/issues/485)) ([36e1c87](https://github.com/fluencelabs/aquavm/commit/36e1c8762c1888f375adacc21907d98a811d28d9))
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.4.1...avm-data-store-v0.5.0) (2023-02-21)

View File

@ -1,6 +1,6 @@
[package]
name = "avm-data-store"
version = "0.5.0"
version = "0.6.0"
description = "Definition of the AVM DataStore trait"
authors = ["Fluence Labs"]
edition = "2018"

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter-wasm"
version = "0.35.4"
version = "0.35.5"
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.3"
version = "0.1.4"
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.3", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.4.4", path = "../air-lib/test-utils" }
air-parser = { version = "0.7.3", 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.3", path = "../air-lib/test-utils", features = ["test_with_native_code"] }
air-test-utils = { version = "0.4.4", path = "../air-lib/test-utils", features = ["test_with_native_code"] }

View File

@ -7,6 +7,22 @@
* avm-data-store bumped from 0.4.1 to 0.5.0
* avm-interface bumped from 0.28.1 to 0.28.2
## [0.2.5](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.4...air-trace-v0.2.5) (2023-02-27)
### Bug Fixes
* **air-trace:** set correct air verison ([#486](https://github.com/fluencelabs/aquavm/issues/486)) ([c10f89b](https://github.com/fluencelabs/aquavm/commit/c10f89b5e5856ed155da1dcb4784e73d63cc1bea))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air bumped from 0.35.1 to 0.36.0
* air-test-utils bumped from 0.4.3 to 0.4.4
* avm-data-store bumped from 0.5.0 to 0.6.0
## [0.2.4](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.3...air-trace-v0.2.4) (2023-02-08)

View File

@ -9,10 +9,10 @@ publish = false
keywords = ["fluence", "air", "tracing"]
[dependencies]
air = { version = "0.35.1", path = "../../../air" }
air-test-utils = { version = "0.4.3",path = "../../../crates/air-lib/test-utils", optional = true }
air = { version = "0.36.0", path = "../../../air" }
air-test-utils = { version = "0.4.4",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.5.0", path = "../../../crates/data-store" }
avm-data-store = { version = "0.6.0", path = "../../../crates/data-store" }
avm-interface = { version = "0.28.2", path = "../../../avm/interface" }
anyhow = "1.0.69"