chore: release master (#751)

* chore: release master

* chore: Bump air-interpreter and air-near-contract version to 0.55.0
This commit is contained in:
fluencebot
2023-12-12 19:15:36 +02:00
committed by GitHub
parent 05fda3ee16
commit 17d7ef6c5a
42 changed files with 463 additions and 138 deletions

View File

@ -62,6 +62,26 @@
* air-test-utils bumped from 0.12.0 to 0.12.1
* air-interpreter-signatures bumped from 0.1.3 to 0.1.4
## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.7.3...air-testing-framework-v0.8.0) (2023-12-12)
### ⚠ BREAKING CHANGES
* **interpreter-data:** allow only deterministic signature algorithms ([#734](https://github.com/fluencelabs/aquavm/issues/734))
### Features
* **interpreter-data:** allow only deterministic signature algorithms ([#734](https://github.com/fluencelabs/aquavm/issues/734)) ([15ce40a](https://github.com/fluencelabs/aquavm/commit/15ce40a1cd3271feb294666a1ef26d00282eb780))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.12.1 to 0.13.0
* aquavm-air-parser bumped from 0.10.0 to 0.11.0
* air-interpreter-signatures bumped from 0.1.4 to 0.1.5
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.6.1...air-testing-framework-v0.7.0) (2023-10-13)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.7.3"
version = "0.8.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.12.1", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
air-test-utils = { version = "0.13.0", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.11.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"
fluence-keypair = "0.10.1"
@ -24,7 +24,7 @@ nom = "7.1.3"
nom_locate = "4.1.0"
serde_json = "1.0.108"
regex = "1.10.2"
air-interpreter-signatures = { version = "0.1.4", path = "../air-lib/interpreter-signatures" }
air-interpreter-signatures = { version = "0.1.5", path = "../air-lib/interpreter-signatures" }
[dev-dependencies]
maplit = "1.0.2"