Skip to content

Commit

Permalink
chore: release master
Browse files Browse the repository at this point in the history
  • Loading branch information
fluencebot committed Jul 22, 2024
1 parent 58a5f30 commit 0a811cb
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"air": "0.64.1",
"air-interpreter": "0.64.1",
"avm/interface": "0.32.1",
"avm/server": "0.38.0",
"avm/server": "0.38.1",
"avm/client": "0.64.1",
"crates/air-lib/air-parser": "0.12.0",
"crates/air-lib/execution-info-collector": "0.7.14",
"crates/air-lib/interpreter-cid": "0.9.0",
"crates/air-lib/interpreter-data": "0.17.2",
"crates/air-lib/test-utils": "0.18.2",
"crates/air-lib/test-utils": "0.18.3",
"crates/air-lib/trace-handler": "0.5.12",
"crates/air-lib/utils": "0.3.0",
"crates/beautifier": "0.5.0",
"crates/data-store": "0.7.9",
"crates/testing-framework": "0.11.2",
"crates/testing-framework": "0.11.3",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.4.0",
"tools/cli/air": "0.9.1",
"tools/cli/air": "0.9.2",
"crates/air-lib/lambda/ast": "0.1.0",
"crates/air-lib/lambda/parser": "0.1.0",
"crates/air-lib/log-targets": "0.1.0",
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions avm/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* avm-data-store bumped from 0.7.4 to 0.7.5
* avm-interface bumped from 0.30.0 to 0.31.0

## [0.38.1](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.38.0...avm-server-v0.38.1) (2024-07-22)


### Bug Fixes

* **avm-server:** remove unused AVM code ([#848](https://github.com/fluencelabs/aquavm/issues/848)) ([50b23c6](https://github.com/fluencelabs/aquavm/commit/50b23c6d9f5746acbddbbe93e3d1c02d7582a56a))

## [0.38.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.37.0...avm-server-v0.38.0) (2024-04-15)


Expand Down
2 changes: 1 addition & 1 deletion avm/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.38.0"
version = "0.38.1"
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
license = "AGPL-3.0-only"
Expand Down
4 changes: 4 additions & 0 deletions crates/air-lib/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
* dependencies
* aquavm-air bumped from 0.64.0 to 0.64.1

* The following workspace dependencies were updated
* dependencies
* avm-server bumped from 0.38.0 to 0.38.1

## [0.18.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.17.1...air-test-utils-v0.18.0) (2024-04-15)


Expand Down
4 changes: 2 additions & 2 deletions crates/air-lib/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.18.2"
version = "0.18.3"
description = "Test utils for the AIR interpreter"
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
Expand All @@ -22,7 +22,7 @@ air-interpreter-interface = { version = "0.19.0", path = "../interpreter-interfa
air-interpreter-sede = { version = "0.1.0", path = "../interpreter-sede" }
air-interpreter-signatures = { version = "0.1.7", path = "../interpreter-signatures" }
avm-interface = { version = "0.32.1", path = "../../../avm/interface" }
avm-server = { version = "0.38.0", path = "../../../avm/server" }
avm-server = { version = "0.38.1", path = "../../../avm/server" }
marine-rs-sdk = "0.14.0"

object-pool = "0.5.4"
Expand Down
4 changes: 4 additions & 0 deletions crates/testing-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@
* dependencies
* air-test-utils bumped from 0.18.1 to 0.18.2

* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.18.2 to 0.18.3

## [0.11.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.10.1...air-testing-framework-v0.11.0) (2024-04-15)


Expand Down
4 changes: 2 additions & 2 deletions crates/testing-framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.11.2"
version = "0.11.3"
description = "AquaVM testing framework"
authors = ["Fluence DAO", "Cloudless Labs"]
edition = "2021"
Expand All @@ -14,7 +14,7 @@ name = "air_test_framework"
path = "src/lib.rs"

[dependencies]
air-test-utils = { version = "0.18.2", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.18.3", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.12.0", path = "../air-lib/air-parser" }

itertools = "0.10.5"
Expand Down
15 changes: 15 additions & 0 deletions tools/cli/air/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,21 @@
* aquavm-air bumped from 0.64.0 to 0.64.1
* air-test-utils bumped from 0.18.1 to 0.18.2

## [0.9.2](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.9.1...aquavm-air-cli-v0.9.2) (2024-07-22)


### Bug Fixes

* **value:** remove unused code ([#850](https://github.com/fluencelabs/aquavm/issues/850)) ([58a5f30](https://github.com/fluencelabs/aquavm/commit/58a5f3046adfce9a8c0db6a04afee55318ab600a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* avm-server bumped from 0.38.0 to 0.38.1
* air-test-utils bumped from 0.18.2 to 0.18.3

## [0.9.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.8.0...aquavm-air-cli-v0.9.0) (2024-06-26)


Expand Down
6 changes: 3 additions & 3 deletions tools/cli/air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aquavm-air-cli"
version = "0.9.1"
version = "0.9.2"
edition = "2021"
description = "AIR execution and printing tool"
authors = ["Fluence DAO", "Cloudless Labs"]
Expand All @@ -17,8 +17,8 @@ avm-interface = { version = "0.32.1", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.19.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-data = { version = "0.17.2", path = "../../../crates/air-lib/interpreter-data" }
air-interpreter-sede = { version = "0.1.0", path = "../../../crates/air-lib/interpreter-sede", default-features = false }
avm-server = { version = "0.38.0", path = "../../../avm/server" }
air-test-utils = { version = "0.18.2",path = "../../../crates/air-lib/test-utils", optional = true }
avm-server = { version = "0.38.1", path = "../../../avm/server" }
air-test-utils = { version = "0.18.3",path = "../../../crates/air-lib/test-utils", optional = true }

clap = { version = "4.4.7", features = ["derive", "env"] }
eyre = "0.6.11"
Expand Down

0 comments on commit 0a811cb

Please sign in to comment.