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 14, 2023
1 parent d195152 commit 06c49fa
Show file tree
Hide file tree
Showing 27 changed files with 173 additions and 55 deletions.
24 changes: 12 additions & 12 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"air": "0.41.0",
"air-interpreter": "0.41.0",
"air": "0.42.0",
"air-interpreter": "0.42.0",
"avm/interface": "0.28.4",
"avm/server": "0.32.0",
"avm/client": "0.41.0",
"crates/air-lib/air-parser": "0.7.5",
"crates/air-lib/execution-info-collector": "0.7.5",
"avm/client": "0.42.0",
"crates/air-lib/air-parser": "0.8.0",
"crates/air-lib/execution-info-collector": "0.7.6",
"crates/air-lib/interpreter-cid": "0.3.0",
"crates/air-lib/interpreter-data": "0.8.0",
"crates/air-lib/test-utils": "0.7.0",
"crates/air-lib/trace-handler": "0.2.1",
"crates/air-lib/interpreter-data": "0.8.1",
"crates/air-lib/test-utils": "0.7.1",
"crates/air-lib/trace-handler": "0.2.2",
"crates/air-lib/utils": "0.1.1",
"crates/beautifier": "0.1.4",
"crates/beautifier": "0.2.0",
"crates/data-store": "0.6.2",
"crates/testing-framework": "0.3.0",
"crates/testing-framework": "0.3.1",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.0",
"tools/cli/air": "0.3.1",
"tools/wasm/air-beautify-wasm": "0.3.1",
"tools/cli/air": "0.3.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
22 changes: 11 additions & 11 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.42.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.41.0...air-interpreter-v0.42.0) (2023-07-14)


### Miscellaneous Chores

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


### Dependencies

* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.41.0 to 0.42.0

## [0.41.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.40.0...air-interpreter-v0.41.0) (2023-06-23)


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.41.0"
version = "0.42.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.41.0", path = "../air" }
aquavm-air = { version = "0.42.0", path = "../air" }
air-interpreter-interface = { version = "0.14.0", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

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

## [0.42.0](https://github.com/fluencelabs/aquavm/compare/air-v0.41.0...air-v0.42.0) (2023-07-14)


### ⚠ BREAKING CHANGES

* **execution-engine:** %last_eror%.$.message and $.error_code now return an empty string and 0 correspondingly [fixes VM-313]
* **execution-engine:** unfefined %last_error% now returns an empty … ([#628](https://github.com/fluencelabs/aquavm/issues/628))
* **aquavm-air:** `ap` join behavior ([#631](https://github.com/fluencelabs/aquavm/issues/631))
* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610))

### Features

* **aquavm-air:** `ap` join behavior ([#631](https://github.com/fluencelabs/aquavm/issues/631)) ([75f5516](https://github.com/fluencelabs/aquavm/commit/75f5516c5803c256e329a7318632fbab13aea491)), closes [#632](https://github.com/fluencelabs/aquavm/issues/632)
* **execution-engine:** %last_eror%.$.message and $.error_code now return an empty string and 0 correspondingly [fixes VM-313] ([d195152](https://github.com/fluencelabs/aquavm/commit/d19515232043462e809d9cd6964042f69a77f4cf))
* **execution-engine:** Stream Map to Scalar conversion using canon instruction [fixes VM-294] ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef))
* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef))
* **execution-engine:** unfefined %last_error% now returns an empty … ([#628](https://github.com/fluencelabs/aquavm/issues/628)) ([d195152](https://github.com/fluencelabs/aquavm/commit/d19515232043462e809d9cd6964042f69a77f4cf))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.7.5 to 0.8.0
* air-execution-info-collector bumped from 0.7.5 to 0.7.6
* air-interpreter-data bumped from 0.8.0 to 0.8.1
* air-trace-handler bumped from 0.2.1 to 0.2.2

## [0.41.0](https://github.com/fluencelabs/aquavm/compare/air-v0.40.0...air-v0.41.0) (2023-06-23)


Expand Down
10 changes: 5 additions & 5 deletions air/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.41.0"
version = "0.42.0"
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -16,16 +16,16 @@ path = "src/lib.rs"
doctest = false

[dependencies]
aquavm-air-parser = { version = "0.7.5", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.5", path = "../crates/air-lib/execution-info-collector" }
aquavm-air-parser = { version = "0.8.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.6", path = "../crates/air-lib/execution-info-collector" }
air-interpreter-cid = { version = "0.3.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.8.0", path = "../crates/air-lib/interpreter-data" }
air-interpreter-data = { version = "0.8.1", path = "../crates/air-lib/interpreter-data" }
air-interpreter-signatures = { version = "0.1.1", path = "../crates/air-lib/interpreter-signatures" }
air-interpreter-interface = { version = "0.14.0", 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.2.1", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.2.2", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.1.1", path = "../crates/air-lib/utils" }
polyplets = { version = "0.3.2", path = "../crates/air-lib/polyplets" }
fluence-keypair = { version = "0.10.1" }
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.42.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.41.0...avm-client-v0.42.0) (2023-07-14)


### Miscellaneous Chores

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

## [0.41.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.40.0...avm-client-v0.41.0) (2023-06-23)


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.41.0",
"version": "0.42.0",
"main": "./dist/index.js",
"repository": "https://github.com/fluencelabs/air",
"author": "Fluence Labs",
Expand Down
12 changes: 12 additions & 0 deletions crates/air-lib/air-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.7.5...air-parser-v0.8.0) (2023-07-14)


### ⚠ BREAKING CHANGES

* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610))

### Features

* **execution-engine:** Stream Map to Scalar conversion using canon instruction [fixes VM-294] ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef))
* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef))

## [0.7.5](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.7.4...air-parser-v0.7.5) (2023-06-22)


Expand Down
2 changes: 1 addition & 1 deletion crates/air-lib/air-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aquavm-air-parser"
description = "Parser of the AIR scripts in a form of string to AST"
version = "0.7.5"
version = "0.8.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crates/air-lib/execution-info-collector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.7.5 to 0.8.0

## [0.7.5](https://github.com/fluencelabs/aquavm/compare/air-execution-info-collector-v0.7.4...air-execution-info-collector-v0.7.5) (2023-06-22)


Expand Down
4 changes: 2 additions & 2 deletions crates/air-lib/execution-info-collector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "air-execution-info-collector"
version = "0.7.5"
version = "0.7.6"
description = "Implementation of AIR execution info collector"
authors = ["Fluence Labs"]
edition = "2018"
Expand All @@ -15,4 +15,4 @@ name = "air_execution_info_collector"
path = "src/lib.rs"

[dependencies]
aquavm-air-parser = { version = "0.7.5", path = "../air-parser" }
aquavm-air-parser = { version = "0.8.0", path = "../air-parser" }
4 changes: 4 additions & 0 deletions crates/air-lib/interpreter-data/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
* dependencies
* air-parser bumped from 0.7.2 to 0.7.3

* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.7.5 to 0.8.0

## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.7.0...air-interpreter-data-v0.8.0) (2023-06-22)


Expand Down
4 changes: 2 additions & 2 deletions 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.8.0"
version = "0.8.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -16,7 +16,7 @@ path = "src/lib.rs"

[dependencies]
air-utils = { version = "0.1.1", path = "../utils" }
aquavm-air-parser = { version = "0.7.5", path = "../air-parser" }
aquavm-air-parser = { version = "0.8.0", path = "../air-parser" }
air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" }
air-interpreter-signatures = { version = "0.1.1", path = "../interpreter-signatures" }
polyplets = { version = "0.3.2", path = "../polyplets" }
Expand Down
5 changes: 5 additions & 0 deletions crates/air-lib/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
* avm-interface bumped from 0.28.2 to 0.28.3
* avm-server bumped from 0.30.1 to 0.31.0

* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.41.0 to 0.42.0
* air-interpreter-data bumped from 0.8.0 to 0.8.1

## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.6.0...air-test-utils-v0.7.0) (2023-06-23)


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.7.0"
version = "0.7.1"
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.41.0", path = "../../../air" }
aquavm-air = { version = "0.42.0", path = "../../../air" }
air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.8.0", path = "../interpreter-data" }
air-interpreter-data = { version = "0.8.1", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.14.0", path = "../interpreter-interface" }
avm-interface = { version = "0.28.4", path = "../../../avm/interface" }
avm-server = { version = "0.32.0", path = "../../../avm/server" }
Expand Down
5 changes: 5 additions & 0 deletions crates/air-lib/trace-handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.8.0 to 0.8.1
* aquavm-air-parser bumped from 0.7.5 to 0.8.0

## [0.2.1](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.2.0...air-trace-handler-v0.2.1) (2023-06-22)


Expand Down
Loading

0 comments on commit 06c49fa

Please sign in to comment.