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

@@ -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"] }