Skip to content

Commit

Permalink
chore: release master (#821)
Browse files Browse the repository at this point in the history
  • Loading branch information
fluencebot committed Feb 22, 2024
1 parent 08e8547 commit 9cc62cb
Show file tree
Hide file tree
Showing 42 changed files with 305 additions and 114 deletions.
34 changes: 17 additions & 17 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"air": "0.60.0",
"air-interpreter": "0.60.0",
"avm/interface": "0.32.0",
"avm/server": "0.36.0",
"avm/client": "0.60.0",
"crates/air-lib/air-parser": "0.11.2",
"crates/air-lib/execution-info-collector": "0.7.13",
"air": "0.61.0",
"air-interpreter": "0.61.0",
"avm/interface": "0.32.1",
"avm/server": "0.37.0",
"avm/client": "0.61.0",
"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.1",
"crates/air-lib/test-utils": "0.16.0",
"crates/air-lib/trace-handler": "0.5.11",
"crates/air-lib/interpreter-data": "0.17.2",
"crates/air-lib/test-utils": "0.17.0",
"crates/air-lib/trace-handler": "0.5.12",
"crates/air-lib/utils": "0.3.0",
"crates/beautifier": "0.4.2",
"crates/data-store": "0.7.8",
"crates/testing-framework": "0.9.0",
"crates/beautifier": "0.4.3",
"crates/data-store": "0.7.9",
"crates/testing-framework": "0.10.0",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.8",
"tools/cli/air": "0.7.0",
"tools/wasm/air-beautify-wasm": "0.3.9",
"tools/cli/air": "0.7.1",
"crates/air-lib/lambda/ast": "0.1.0",
"crates/air-lib/lambda/parser": "0.1.0",
"crates/air-lib/log-targets": "0.1.0",
"crates/air-lib/interpreter-interface": "0.18.0",
"crates/air-lib/interpreter-interface": "0.19.0",
"crates/air-lib/interpreter-signatures": "0.1.7",
"crates/air-lib/polyplets": "0.6.0"
"crates/air-lib/polyplets": "0.7.0"
}
32 changes: 16 additions & 16 deletions Cargo.lock

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

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

## [0.61.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.60.0...air-interpreter-v0.61.0) (2024-02-22)


### ⚠ BREAKING CHANGES

* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))

### Features

* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.60.0 to 0.61.0
* air-interpreter-interface bumped from 0.18.0 to 0.19.0

## [0.60.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.59.0...air-interpreter-v0.60.0) (2024-02-20)


Expand Down
6 changes: 3 additions & 3 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.60.0"
version = "0.61.0"
description = "Crate-wrapper for air"
authors = ["Fluence Labs"]
edition = "2021"
Expand All @@ -18,8 +18,8 @@ name = "air_interpreter_server"
path = "src/marine.rs"

[dependencies]
aquavm-air = { version = "0.60.0", path = "../air" }
air-interpreter-interface = { version = "0.18.0", path = "../crates/air-lib/interpreter-interface" }
aquavm-air = { version = "0.61.0", path = "../air" }
air-interpreter-interface = { version = "0.19.0", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }

marine-rs-sdk = {version = "0.14.0", features = ["logger"] }
Expand Down
23 changes: 23 additions & 0 deletions air/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [0.61.0](https://github.com/fluencelabs/aquavm/compare/air-v0.60.0...air-v0.61.0) (2024-02-22)


### ⚠ BREAKING CHANGES

* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))

### Features

* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.11.2 to 0.12.0
* air-execution-info-collector bumped from 0.7.13 to 0.7.14
* air-interpreter-data bumped from 0.17.1 to 0.17.2
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* air-trace-handler bumped from 0.5.11 to 0.5.12
* polyplets bumped from 0.6.0 to 0.7.0

## [0.60.0](https://github.com/fluencelabs/aquavm/compare/air-v0.59.0...air-v0.60.0) (2024-02-20)


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

[dependencies]
aquavm-air-parser = { version = "0.11.2", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.13", path = "../crates/air-lib/execution-info-collector" }
aquavm-air-parser = { version = "0.12.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.14", path = "../crates/air-lib/execution-info-collector" }
air-interpreter-cid = { version = "0.9.0", path = "../crates/air-lib/interpreter-cid", features = ["rkyv"] }
air-interpreter-data = { version = "0.17.1", path = "../crates/air-lib/interpreter-data" }
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" }
air-interpreter-signatures = { version = "0.1.7", path = "../crates/air-lib/interpreter-signatures", features = ["rkyv"] }
air-interpreter-value = { version = "0.1.0", path = "../crates/air-lib/interpreter-value" }
air-interpreter-interface = { version = "0.18.0", path = "../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-interface = { version = "0.19.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.5.11", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.5.12", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.3.0", path = "../crates/air-lib/utils" }
polyplets = { version = "0.6.0", path = "../crates/air-lib/polyplets" }
polyplets = { version = "0.7.0", path = "../crates/air-lib/polyplets" }
fluence-keypair = { version = "0.10.4", default-features = false }

serde = { version = "1.0.190", features = [ "derive", "rc" ] }
Expand Down
2 changes: 1 addition & 1 deletion air/src/preparation_step/interpreter_versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use std::str::FromStr;
/// Minimal supported interpreter version, should be updated according to
/// [./docs/update-guide.md]
static MINIMAL_INTERPRETER_VERSION: Lazy<semver::Version> =
Lazy::new(|| semver::Version::from_str("0.58.0").expect("valid minimal supported version specified"));
Lazy::new(|| semver::Version::from_str("0.61.0").expect("valid minimal supported version specified"));

/// Current interpreter version, more info in
/// [./docs/update-guide.md]
Expand Down
11 changes: 11 additions & 0 deletions avm/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.61.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.60.0...avm-client-v0.61.0) (2024-02-22)


### ⚠ BREAKING CHANGES

* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820))

### Features

* update marine-rs-sdk to 0.14.0, remove all of json_path remains ([#820](https://github.com/fluencelabs/aquavm/issues/820)) ([08e8547](https://github.com/fluencelabs/aquavm/commit/08e85478b4716f2ae5f57bc57dcb5d1df63f1b5d))

## [0.60.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.59.0...avm-client-v0.60.0) (2024-02-20)


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.60.0",
"version": "0.61.0",
"main": "./dist/index.js",
"repository": "https://github.com/fluencelabs/air",
"author": "Fluence Labs",
Expand Down
5 changes: 5 additions & 0 deletions avm/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* air-interpreter-interface bumped from 0.17.1 to 0.17.2

* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.18.0 to 0.19.0
* polyplets bumped from 0.6.0 to 0.7.0

## [0.32.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.31.2...avm-interface-v0.32.0) (2024-02-20)


Expand Down
6 changes: 3 additions & 3 deletions avm/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "avm-interface"
description = "Fluence AIR VM interfacing"
version = "0.32.0"
version = "0.32.1"
authors = ["Fluence Labs"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -15,10 +15,10 @@ name = "avm_interface"
path = "src/lib.rs"

[dependencies]
air-interpreter-interface = { version = "0.18.0", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-interface = { version = "0.19.0", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-sede = { version = "0.1.0", path = "../../crates/air-lib/interpreter-sede", default-features = false }
air-utils = { version = "0.3.0", path = "../../crates/air-lib/utils" }
polyplets = { version = "0.6.0", path = "../../crates/air-lib/polyplets" }
polyplets = { version = "0.7.0", path = "../../crates/air-lib/polyplets" }

thiserror = "1.0.50"
maplit = "1.0.2"
Expand Down
Loading

0 comments on commit 9cc62cb

Please sign in to comment.