chore: release master (#619)

* chore: release master

* chore: Bump air-interpreter version to 0.42.0
This commit is contained in:
fluencebot
2023-07-17 17:55:56 +03:00
committed by GitHub
parent 33a9d9f32f
commit 531956b9ba
29 changed files with 191 additions and 57 deletions

View File

@ -13,6 +13,25 @@
* dev-dependencies
* air-test-utils bumped from 0.5.0 to 0.6.0
## [0.4.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.3.0...air-testing-framework-v0.4.0) (2023-07-16)
### ⚠ BREAKING CHANGES
* **execution-engine:** add error-code invariant check for match/mismatch ([#622](https://github.com/fluencelabs/aquavm/issues/622))
### Features
* **execution-engine:** add error-code invariant check for match/mismatch ([#622](https://github.com/fluencelabs/aquavm/issues/622)) ([33a9d9f](https://github.com/fluencelabs/aquavm/commit/33a9d9f32f84c5b31b59120f9da3c1624e1d5c27))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.7.0 to 0.7.1
* aquavm-air-parser bumped from 0.7.5 to 0.8.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)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.3.0"
version = "0.4.0"
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.7.0", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.7.5", path = "../air-lib/air-parser" }
air-test-utils = { version = "0.7.1", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.8.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"
strum = { version="0.24.1", features=["derive"] }