chore: release master (#481)

This commit is contained in:
fluencebot
2023-02-21 20:54:12 +02:00
committed by GitHub
parent ae3a8e9a50
commit c9eb5cd47a
21 changed files with 125 additions and 36 deletions

View File

@ -1,10 +1,10 @@
{
"air": "0.35.4",
"air-interpreter": "0.35.4",
"avm/interface": "0.28.1",
"avm/server": "0.28.1",
"avm/interface": "0.28.2",
"avm/server": "0.29.0",
"avm/client": "0.35.4",
"crates/air-lib/air-parser": "0.7.2",
"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",
@ -12,7 +12,7 @@
"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/data-store": "0.5.0",
"crates/testing-framework": "0.1.2",
"tools/cli/air-beautify": "0.1.1",
"tools/cli/air-trace": "0.2.4",

View File

@ -4,6 +4,22 @@ 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.28.2](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.28.1...avm-interface-v0.28.2) (2023-02-21)
### ⚠ BREAKING CHANGES
* **avm:** improve anomaly detection
### Features
* **avm:** improve anomaly detection ([5e6863d](https://github.com/fluencelabs/aquavm/commit/5e6863d4d59684d4f2b509ece6e597831e648f05))
### Bug Fixes
* **avm-interface:** minor code fix ([#482](https://github.com/fluencelabs/aquavm/issues/482)) ([a1f7a5c](https://github.com/fluencelabs/aquavm/commit/a1f7a5ce74b5002f3283494164a3d57fdd1cbd80))
## [Unreleased]
## [0.28.1] - 2022-12-26

View File

@ -1,7 +1,7 @@
[package]
name = "avm-interface"
description = "Fluence AIR VM interfacing"
version = "0.28.1"
version = "0.28.2"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -4,6 +4,30 @@ 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.29.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.28.1...avm-server-v0.29.0) (2023-02-21)
### ⚠ BREAKING CHANGES
* **avm:** improve anomaly detection
### Features
* **avm:** improve anomaly detection ([5e6863d](https://github.com/fluencelabs/aquavm/commit/5e6863d4d59684d4f2b509ece6e597831e648f05))
### Bug Fixes
* **deps:** update rust crate marine-runtime to 0.24.1 ([#478](https://github.com/fluencelabs/aquavm/issues/478)) ([c408da8](https://github.com/fluencelabs/aquavm/commit/c408da884de9bc62c058dc0a1994dd13bc765fb0))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* avm-data-store bumped from 0.4.1 to 0.5.0
* avm-interface bumped from 0.28.0 to 0.28.2
## [Unreleased]
## [0.28.1] - 2022-12-26

View File

@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.28.1"
version = "0.29.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -17,10 +17,10 @@ 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.4.1", path = "../../crates/data-store" }
avm-data-store = { version = "0.5.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.0", path = "../../avm/interface" }
avm-interface = { version = "0.28.2", path = "../../avm/interface" }
eyre = "0.6.8"
thiserror = "1.0.38"

View File

@ -0,0 +1,14 @@
# Changelog
## [0.7.3](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.7.2...air-parser-v0.7.3) (2023-02-21)
### ⚠ BREAKING CHANGES
* **avm:** improve anomaly detection
### Features
* **air-parser:** improve docs ([#483](https://github.com/fluencelabs/aquavm/issues/483)) ([ae3a8e9](https://github.com/fluencelabs/aquavm/commit/ae3a8e9a503f0ef4c2ec87be7f620d57f3483817))
* **avm:** improve anomaly detection ([5e6863d](https://github.com/fluencelabs/aquavm/commit/5e6863d4d59684d4f2b509ece6e597831e648f05))
* improve parser docs ([ae3a8e9](https://github.com/fluencelabs/aquavm/commit/ae3a8e9a503f0ef4c2ec87be7f620d57f3483817))

View File

@ -1,7 +1,7 @@
[package]
name = "air-parser"
description = "Parser of the AIR scripts in a form of string to AST"
version = "0.7.2"
version = "0.7.3"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "air-execution-info-collector"
version = "0.7.2"
version = "0.7.3"
description = "Implementation of AIR execution info collector"
authors = ["Fluence Labs"]
edition = "2018"

View File

@ -1,5 +1,9 @@
# Changelog
* The following workspace dependencies were updated
* dependencies
* air-parser bumped from 0.7.2 to 0.7.3
## [0.6.2](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.6.1...air-interpreter-data-v0.6.2) (2023-02-08)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.6.2"
version = "0.6.3"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -15,7 +15,7 @@ path = "src/lib.rs"
[dependencies]
air-utils = { version = "0.1.0", path = "../utils" }
air-parser = { version = "0.7.2", path = "../air-parser" }
air-parser = { version = "0.7.3", path = "../air-parser" }
air-interpreter-interface = { version = "0.12.1", path = "../interpreter-interface" }
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
polyplets = { version = "0.3.2", path = "../polyplets" }

View File

@ -1,5 +1,11 @@
# Changelog
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.6.2 to 0.6.3
* avm-interface bumped from 0.28.1 to 0.28.2
* avm-server bumped from 0.28.1 to 0.29.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.2"
version = "0.4.3"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
@ -16,10 +16,10 @@ path = "src/lib.rs"
[dependencies]
air = { path = "../../../air" }
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.2", path = "../interpreter-data" }
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.1", path = "../../../avm/interface" }
avm-server = { version = "0.28.1", path = "../../../avm/server" }
avm-interface = { version = "0.28.2", path = "../../../avm/interface" }
avm-server = { version = "0.29.0", path = "../../../avm/server" }
marine-rs-sdk = "0.7.1"
fstrings = "0.2.3"

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.1.1"
version = "0.1.2"
description = "Implementation of AIR trace handler"
authors = ["Fluence Labs"]
edition = "2018"
@ -15,10 +15,10 @@ path = "src/lib.rs"
[dependencies]
air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.6.2", path = "../interpreter-data" }
air-interpreter-data = { version = "0.6.3", 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" }
air-parser = { version = "0.7.3", path = "../air-parser" }
polyplets = { version = "0.3.2", path = "../polyplets" }
bimap = "0.6.2"

View File

@ -1,6 +1,6 @@
[package]
name = "air-beautifier"
version = "0.1.1"
version = "0.1.2"
description = "AIR human-readable format transformer library"
authors = ["Fluence Labs"]
edition = "2018"
@ -14,6 +14,6 @@ name = "air_beautifier"
path = "src/lib.rs"
[dependencies]
air-parser = { version = "0.7.1", path = "../air-lib/air-parser" }
air-parser = { version = "0.7.3", path = "../air-lib/air-parser" }
itertools = "0.10.5"
thiserror = "1.0.38"

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.5.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.4.1...avm-data-store-v0.5.0) (2023-02-21)
### ⚠ BREAKING CHANGES
* **avm:** improve anomaly detection
### Features
* **avm:** improve anomaly detection ([5e6863d](https://github.com/fluencelabs/aquavm/commit/5e6863d4d59684d4f2b509ece6e597831e648f05))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* avm-interface bumped from 0.28.1 to 0.28.2
## [Unreleased]
## [0.4.1] - 2022-09-13

View File

@ -1,6 +1,6 @@
[package]
name = "avm-data-store"
version = "0.4.1"
version = "0.5.0"
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.28.1", path = "../../avm/interface"}
avm-interface = { version = "0.28.2", path = "../../avm/interface"}
serde = { version = "1.0.152", features = ["derive"] }
serde_bytes = "0.11.9"

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.1.2"
version = "0.1.3"
description = "AquaVM testing framework"
authors = ["Fluence Labs"]
edition = "2018"
@ -14,8 +14,8 @@ name = "air_test_framework"
path = "src/lib.rs"
[dependencies]
air-test-utils = { version = "0.4.2", path = "../air-lib/test-utils" }
air-parser = { version = "0.7.2", path = "../air-lib/air-parser" }
air-test-utils = { version = "0.4.3", path = "../air-lib/test-utils" }
air-parser = { version = "0.7.3", path = "../air-lib/air-parser" }
itertools = "0.10.5"
strum = { version="0.24.1", features=["derive"] }
@ -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.2", path = "../air-lib/test-utils", features = ["test_with_native_code"] }
air-test-utils = { version = "0.4.3", path = "../air-lib/test-utils", features = ["test_with_native_code"] }

View File

@ -1,6 +1,6 @@
[package]
name = "air-beautify"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "AIR human-readable format transformer binary"
authors = ["Fluence Labs"]
@ -9,6 +9,6 @@ publish = false
keywords = ["fluence", "air", "beautifier"]
[dependencies]
air-beautifier = { version = "0.1.1", path = "../../../crates/beautifier" }
air-beautifier = { version = "0.1.2", path = "../../../crates/beautifier" }
clap = { version = "4.1.6", features = ["derive"] }
anyhow = "1.0.69"

View File

@ -1,5 +1,12 @@
# Changelog
* The following workspace dependencies were updated
* dependencies
* air bumped from 0.35.1 to 0.36.0
* air-test-utils bumped from 0.4.2 to 0.4.3
* 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.4](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.3...air-trace-v0.2.4) (2023-02-08)

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
description = "AIR performance tracing tool"
authors = ["Fluence Labs"]
@ -9,11 +9,11 @@ publish = false
keywords = ["fluence", "air", "tracing"]
[dependencies]
air = { version = "0.35.1", path = "../../../air" }
air-test-utils = { version = "0.4.2",path = "../../../crates/air-lib/test-utils", optional = true }
air = { version = "0.36.0", path = "../../../air" }
air-test-utils = { version = "0.4.3",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" }
avm-data-store = { version = "0.5.0", path = "../../../crates/data-store" }
avm-interface = { version = "0.28.2", path = "../../../avm/interface" }
anyhow = "1.0.69"
clap = { version = "4.1.6", features = ["derive", "env"] }

View File

@ -1,6 +1,6 @@
[package]
name = "air-beautify-wasm"
version = "0.1.0"
version = "0.1.1"
authors = ["Fluence Labs"]
edition = "2021"
description = "WASM module for air-beautify"
@ -14,4 +14,4 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
# 0.2.79: a function can return Result<..., JsError>.
wasm-bindgen = { version = "=0.2.82", features = ["serde-serialize"] }
air-beautifier = { version = "0.1.0", path = "../../../crates/beautifier" }
air-beautifier = { version = "0.1.2", path = "../../../crates/beautifier" }