mirror of
https://github.com/fluencelabs/aquavm
synced 2025-06-21 10:41:32 +00:00
chore: release master (#725)
* chore: release master * chore: Bump air-interpreter and air-near-contract version to 0.54.0 * Update minimal version to 0.54.0 --------- Co-authored-by: Ivan Boldyrev <ivan@fluence.one>
This commit is contained in:
@ -1,5 +1,21 @@
|
||||
# Changelog
|
||||
|
||||
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-cid-v0.5.0...air-interpreter-cid-v0.6.0) (2023-10-26)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729))
|
||||
|
||||
### Features
|
||||
|
||||
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729)) ([776d81a](https://github.com/fluencelabs/aquavm/commit/776d81a1dba2379e4019dc6bf851ae8396550d66))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **interpreter-cid:** fix compilation with correct featureflag ([a84716d](https://github.com/fluencelabs/aquavm/commit/a84716dad60170567acb0b7755c1e7de403a511e))
|
||||
|
||||
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-cid-v0.4.0...air-interpreter-cid-v0.5.0) (2023-10-16)
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "air-interpreter-cid"
|
||||
description = "AIR interpreter CID util module"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
authors = ["Fluence Labs"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
|
@ -25,6 +25,30 @@
|
||||
* dependencies
|
||||
* air-utils bumped from 0.1.1 to 0.2.0
|
||||
|
||||
## [0.14.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.13.0...air-interpreter-data-v0.14.0) (2023-10-26)
|
||||
|
||||
|
||||
### ⚠ BREAKING CHANGES
|
||||
|
||||
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729))
|
||||
|
||||
### Features
|
||||
|
||||
* **interpreter-cid:** use Blake3 for CIDs ([#729](https://github.com/fluencelabs/aquavm/issues/729)) ([776d81a](https://github.com/fluencelabs/aquavm/commit/776d81a1dba2379e4019dc6bf851ae8396550d66))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update rust crate fluence-keypair to 0.10.3 ([#620](https://github.com/fluencelabs/aquavm/issues/620)) ([88e7dba](https://github.com/fluencelabs/aquavm/commit/88e7dba5f2ed6cf930f9bae52ad6dee7fa9e4ed0))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
|
||||
* air-interpreter-signatures bumped from 0.1.3 to 0.1.4
|
||||
|
||||
## [0.13.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.12.1...air-interpreter-data-v0.13.0) (2023-10-16)
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "air-interpreter-data"
|
||||
description = "Data format of the AIR interpreter"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
authors = ["Fluence Labs"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
@ -17,8 +17,8 @@ path = "src/lib.rs"
|
||||
[dependencies]
|
||||
air-utils = { version = "0.2.0", path = "../utils" }
|
||||
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
|
||||
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
|
||||
air-interpreter-signatures = { version = "0.1.3", path = "../interpreter-signatures" }
|
||||
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
|
||||
air-interpreter-signatures = { version = "0.1.4", path = "../interpreter-signatures" }
|
||||
polyplets = { version = "0.5.1", path = "../polyplets" }
|
||||
|
||||
fluence-keypair = { version = "0.10.3", default-features = false }
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "air-interpreter-signatures"
|
||||
description = "AIR interpreter signatures util module"
|
||||
version = "0.1.3"
|
||||
version = "0.1.4"
|
||||
authors = ["Fluence Labs"]
|
||||
edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
@ -11,7 +11,7 @@ keywords = ["fluence", "air", "programming-language"]
|
||||
categories = ["wasm"]
|
||||
|
||||
[dependencies]
|
||||
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
|
||||
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
|
||||
fluence-keypair = { version = "0.10.3", default-features = false }
|
||||
|
||||
bs58 = "0.5.0"
|
||||
|
@ -64,6 +64,23 @@
|
||||
* avm-interface bumped from 0.29.1 to 0.29.2
|
||||
* avm-server bumped from 0.33.1 to 0.33.2
|
||||
|
||||
## [0.12.1](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.12.0...air-test-utils-v0.12.1) (2023-10-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **deps:** update rust crate fluence-keypair to 0.10.3 ([#620](https://github.com/fluencelabs/aquavm/issues/620)) ([88e7dba](https://github.com/fluencelabs/aquavm/commit/88e7dba5f2ed6cf930f9bae52ad6dee7fa9e4ed0))
|
||||
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* aquavm-air bumped from 0.53.0 to 0.54.0
|
||||
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
|
||||
* air-interpreter-data bumped from 0.13.0 to 0.14.0
|
||||
* avm-server bumped from 0.33.2 to 0.33.3
|
||||
|
||||
## [0.12.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.11.1...air-test-utils-v0.12.0) (2023-10-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "air-test-utils"
|
||||
version = "0.12.0"
|
||||
version = "0.12.1"
|
||||
description = "Test utils for the AIR interpreter"
|
||||
authors = ["Fluence Labs"]
|
||||
edition = "2018"
|
||||
@ -15,12 +15,12 @@ name = "air_test_utils"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
aquavm-air = { version = "0.53.0", path = "../../../air" }
|
||||
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
|
||||
air-interpreter-data = { version = "0.13.0", path = "../interpreter-data" }
|
||||
aquavm-air = { version = "0.54.0", path = "../../../air" }
|
||||
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
|
||||
air-interpreter-data = { version = "0.14.0", path = "../interpreter-data" }
|
||||
air-interpreter-interface = { version = "0.15.1", path = "../interpreter-interface" }
|
||||
avm-interface = { version = "0.29.2", path = "../../../avm/interface" }
|
||||
avm-server = { version = "0.33.2", path = "../../../avm/server" }
|
||||
avm-server = { version = "0.33.3", path = "../../../avm/server" }
|
||||
marine-rs-sdk = "0.10.0"
|
||||
|
||||
object-pool = "0.5.4"
|
||||
|
@ -35,6 +35,11 @@
|
||||
* air-interpreter-cid bumped from 0.4.0 to 0.5.0
|
||||
* air-interpreter-data bumped from 0.12.1 to 0.13.0
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
|
||||
* air-interpreter-data bumped from 0.13.0 to 0.14.0
|
||||
|
||||
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.4.0...air-trace-handler-v0.5.0) (2023-08-31)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "air-trace-handler"
|
||||
version = "0.5.6"
|
||||
version = "0.5.7"
|
||||
description = "Implementation of AIR trace handler"
|
||||
authors = ["Fluence Labs"]
|
||||
edition = "2018"
|
||||
@ -13,8 +13,8 @@ name = "air_trace_handler"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
air-interpreter-cid = { version = "0.5.0", path = "../interpreter-cid" }
|
||||
air-interpreter-data = { version = "0.13.0", path = "../interpreter-data" }
|
||||
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
|
||||
air-interpreter-data = { version = "0.14.0", path = "../interpreter-data" }
|
||||
air-log-targets = { version = "0.1.0", path = "../log-targets" }
|
||||
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
|
||||
polyplets = { version = "0.5.1", path = "../polyplets" }
|
||||
|
2
crates/interpreter-wasm/Cargo.lock
generated
2
crates/interpreter-wasm/Cargo.lock
generated
@ -4,7 +4,7 @@ version = 3
|
||||
|
||||
[[package]]
|
||||
name = "air-interpreter-wasm"
|
||||
version = "0.53.0"
|
||||
version = "0.54.0"
|
||||
dependencies = [
|
||||
"built",
|
||||
]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "air-interpreter-wasm"
|
||||
version = "0.53.0"
|
||||
version = "0.54.0"
|
||||
description = "Distribution of AIR interpreter as .wasm"
|
||||
authors = ["Fluence Labs"]
|
||||
license = "Apache-2.0"
|
||||
|
@ -57,6 +57,11 @@
|
||||
* air-test-utils bumped from 0.11.1 to 0.12.0
|
||||
* air-interpreter-signatures bumped from 0.1.2 to 0.1.3
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* 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.7.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.6.1...air-testing-framework-v0.7.0) (2023-10-13)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "air-testing-framework"
|
||||
version = "0.7.2"
|
||||
version = "0.7.3"
|
||||
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.12.0", path = "../air-lib/test-utils" }
|
||||
air-test-utils = { version = "0.12.1", 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.10.2"
|
||||
air-interpreter-signatures = { version = "0.1.3", path = "../air-lib/interpreter-signatures" }
|
||||
air-interpreter-signatures = { version = "0.1.4", path = "../air-lib/interpreter-signatures" }
|
||||
|
||||
[dev-dependencies]
|
||||
maplit = "1.0.2"
|
||||
|
Reference in New Issue
Block a user