Skip to content

Commit

Permalink
chore: release master
Browse files Browse the repository at this point in the history
  • Loading branch information
fluencebot committed Nov 8, 2023
1 parent 1b7de5e commit 380b30e
Show file tree
Hide file tree
Showing 19 changed files with 131 additions and 34 deletions.
16 changes: 8 additions & 8 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"air": "0.54.0",
"air-interpreter": "0.54.0",
"air": "0.55.0",
"air-interpreter": "0.55.0",
"avm/interface": "0.29.2",
"avm/server": "0.33.3",
"avm/client": "0.54.0",
"avm/client": "0.55.0",
"crates/air-lib/air-parser": "0.10.0",
"crates/air-lib/execution-info-collector": "0.7.10",
"crates/air-lib/interpreter-cid": "0.6.0",
"crates/air-lib/interpreter-data": "0.14.0",
"crates/air-lib/test-utils": "0.12.1",
"crates/air-lib/trace-handler": "0.5.7",
"crates/air-lib/interpreter-data": "0.15.0",
"crates/air-lib/test-utils": "0.13.0",
"crates/air-lib/trace-handler": "0.5.8",
"crates/air-lib/utils": "0.2.0",
"crates/beautifier": "0.3.1",
"crates/data-store": "0.7.2",
"crates/testing-framework": "0.7.3",
"crates/testing-framework": "0.8.0",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.5",
"tools/cli/air": "0.5.3",
"tools/cli/air": "0.5.4",
"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
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions air-interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.55.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.54.0...air-interpreter-v0.55.0) (2023-11-08)


### Miscellaneous Chores

* **air-interpreter:** Synchronize air-interpreter versions


### Dependencies

* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.54.0 to 0.55.0

## [0.54.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.53.0...air-interpreter-v0.54.0) (2023-10-26)


Expand Down
4 changes: 2 additions & 2 deletions air-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.54.0"
version = "0.55.0"
description = "Crate-wrapper for air"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -18,7 +18,7 @@ name = "air_interpreter_server"
path = "src/marine.rs"

[dependencies]
aquavm-air = { version = "0.54.0", path = "../air" }
aquavm-air = { version = "0.55.0", path = "../air" }
air-interpreter-interface = { version = "0.15.1", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

Expand Down
19 changes: 19 additions & 0 deletions air/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.55.0](https://github.com/fluencelabs/aquavm/compare/air-v0.54.0...air-v0.55.0) (2023-11-08)


### ⚠ 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-interpreter-data bumped from 0.14.0 to 0.15.0
* air-trace-handler bumped from 0.5.7 to 0.5.8

## [0.54.0](https://github.com/fluencelabs/aquavm/compare/air-v0.53.0...air-v0.54.0) (2023-10-26)


Expand Down
6 changes: 3 additions & 3 deletions air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.54.0"
version = "0.55.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -19,13 +19,13 @@ doctest = false
aquavm-air-parser = { version = "0.10.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.10", path = "../crates/air-lib/execution-info-collector" }
air-interpreter-cid = { version = "0.6.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.14.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-data = { version = "0.15.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-signatures = { version = "0.1.4", path = "../crates/air-lib/interpreter-signatures" }
air-interpreter-interface = { version = "0.15.1", path = "../crates/air-lib/interpreter-interface", default-features = false }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
air-lambda-ast = { version = "0.1.0", path = "../crates/air-lib/lambda/ast" }
air-lambda-parser = { version = "0.1.0", path = "../crates/air-lib/lambda/parser" }
air-trace-handler = { version = "0.5.7", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.5.8", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.2.0", path = "../crates/air-lib/utils" }
polyplets = { version = "0.5.1", path = "../crates/air-lib/polyplets" }
fluence-keypair = { version = "0.10.3", default-features = false }
Expand Down
7 changes: 7 additions & 0 deletions avm/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.55.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.54.0...avm-client-v0.55.0) (2023-11-08)


### Miscellaneous Chores

* **avm-client:** Synchronize air-interpreter versions

## [0.54.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.53.0...avm-client-v0.54.0) (2023-10-26)


Expand Down
4 changes: 2 additions & 2 deletions avm/client/package-lock.json

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

2 changes: 1 addition & 1 deletion avm/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fluencelabs/avm",
"description": "Aquamarine VM",
"version": "0.54.0",
"version": "0.55.0",
"main": "./dist/index.js",
"repository": "https://github.com/fluencelabs/air",
"author": "Fluence Labs",
Expand Down
11 changes: 11 additions & 0 deletions crates/air-lib/interpreter-data/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@
* dependencies
* air-utils bumped from 0.1.1 to 0.2.0

## [0.15.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.14.0...air-interpreter-data-v0.15.0) (2023-11-08)


### ⚠ 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))

## [0.14.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.13.0...air-interpreter-data-v0.14.0) (2023-10-26)


Expand Down
2 changes: 1 addition & 1 deletion crates/air-lib/interpreter-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.14.0"
version = "0.15.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
Expand Down
19 changes: 19 additions & 0 deletions crates/air-lib/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,25 @@
* avm-interface bumped from 0.29.1 to 0.29.2
* avm-server bumped from 0.33.1 to 0.33.2

## [0.13.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.12.1...air-test-utils-v0.13.0) (2023-11-08)


### ⚠ 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
* aquavm-air bumped from 0.54.0 to 0.55.0
* air-interpreter-data bumped from 0.14.0 to 0.15.0

## [0.12.1](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.12.0...air-test-utils-v0.12.1) (2023-10-26)


Expand Down
6 changes: 3 additions & 3 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.12.1"
version = "0.13.0"
description = "Test utils for the AIR interpreter"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -15,9 +15,9 @@ name = "air_test_utils"
path = "src/lib.rs"

[dependencies]
aquavm-air = { version = "0.54.0", path = "../../../air" }
aquavm-air = { version = "0.55.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-data = { version = "0.15.0", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.15.1", path = "../interpreter-interface" }
air-interpreter-signatures = { version = "0.1.3", path = "../interpreter-signatures" }
avm-interface = { version = "0.29.2", path = "../../../avm/interface" }
Expand Down
4 changes: 4 additions & 0 deletions crates/air-lib/trace-handler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@
* air-interpreter-cid bumped from 0.5.0 to 0.6.0
* air-interpreter-data bumped from 0.13.0 to 0.14.0

* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.14.0 to 0.15.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)


Expand Down
4 changes: 2 additions & 2 deletions crates/air-lib/trace-handler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.5.7"
version = "0.5.8"
description = "Implementation of AIR trace handler"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ path = "src/lib.rs"

[dependencies]
air-interpreter-cid = { version = "0.6.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.14.0", path = "../interpreter-data" }
air-interpreter-data = { version = "0.15.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" }
Expand Down
18 changes: 18 additions & 0 deletions crates/testing-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,24 @@
* 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-11-08)


### ⚠ 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

## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.6.1...air-testing-framework-v0.7.0) (2023-10-13)


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.7.3"
version = "0.8.0"
description = "AquaVM testing framework"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -14,7 +14,7 @@ name = "air_test_framework"
path = "src/lib.rs"

[dependencies]
air-test-utils = { version = "0.12.1", path = "../air-lib/test-utils" }
air-test-utils = { version = "0.13.0", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }

itertools = "0.10.5"
Expand Down
5 changes: 5 additions & 0 deletions tools/cli/air/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@
* aquavm-air bumped from 0.52.0 to 0.53.0
* air-test-utils bumped from 0.11.1 to 0.12.0

* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.54.0 to 0.55.0
* air-test-utils bumped from 0.12.1 to 0.13.0

## [0.5.3](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.5.2...aquavm-air-cli-v0.5.3) (2023-10-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.5.3"
version = "0.5.4"
edition = "2021"
description = "AIR execution and printing tool"
authors = ["Fluence Labs"]
Expand All @@ -10,12 +10,12 @@ documentation = "https://docs.rs/aquavm-air-cli"
keywords = ["fluence", "air", "tracing"]

[dependencies]
aquavm-air = { version = "0.54.0", path = "../../../air" }
aquavm-air = { version = "0.55.0", path = "../../../air" }
air-beautifier = { version = "0.3.1", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.7.2", path = "../../../crates/data-store" }
avm-interface = { version = "0.29.2", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.15.1", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.12.1",path = "../../../crates/air-lib/test-utils", optional = true }
air-test-utils = { version = "0.13.0",path = "../../../crates/air-lib/test-utils", optional = true }

anyhow = "1.0.75"
clap = { version = "4.4.7", features = ["derive", "env"] }
Expand Down

0 comments on commit 380b30e

Please sign in to comment.