chore: release master (#716)

This commit is contained in:
fluencebot
2023-10-13 22:21:19 +03:00
committed by GitHub
parent 8a07613027
commit 0aa23318d9
22 changed files with 187 additions and 48 deletions

View File

@ -48,6 +48,25 @@
* dependencies
* air-test-utils bumped from 0.10.5 to 0.10.6
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.6.1...air-testing-framework-v0.7.0) (2023-10-13)
### ⚠ BREAKING CHANGES
* **aquavm-air:** signature checking ([#607](https://github.com/fluencelabs/aquavm/issues/607))
### Features
* **aquavm-air:** signature checking ([#607](https://github.com/fluencelabs/aquavm/issues/607)) ([8a07613](https://github.com/fluencelabs/aquavm/commit/8a076130274c0500025e5c2ea74ec57e4c455971))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.10.6 to 0.11.0
* air-interpreter-signatures bumped from 0.1.1 to 0.1.2
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.5.5...air-testing-framework-v0.6.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.6.1"
version = "0.7.0"
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.10.6", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.11.0", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"
@ -23,7 +23,7 @@ nom = "7.1.3"
nom_locate = "4.1.0"
serde_json = "1.0.95"
regex = "1.8.4"
air-interpreter-signatures = { version = "0.1.1", path = "../air-lib/interpreter-signatures" }
air-interpreter-signatures = { version = "0.1.2", path = "../air-lib/interpreter-signatures" }
[dev-dependencies]
maplit = "1.0.2"