Skip to content

Commit c611ae5

Browse files
authored
chore: release master (#841)
* chore: release master * chore: Bump air-interpreter and air-near-contract version to 0.64.0
1 parent 4bdc881 commit c611ae5

File tree

23 files changed

+133
-149
lines changed

23 files changed

+133
-149
lines changed

.github/release-please/manifest.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"air": "0.63.0",
3-
"air-interpreter": "0.63.0",
2+
"air": "0.64.0",
3+
"air-interpreter": "0.64.0",
44
"avm/interface": "0.32.1",
55
"avm/server": "0.38.0",
6-
"avm/client": "0.63.0",
6+
"avm/client": "0.64.0",
77
"crates/air-lib/air-parser": "0.12.0",
88
"crates/air-lib/execution-info-collector": "0.7.14",
99
"crates/air-lib/interpreter-cid": "0.9.0",
1010
"crates/air-lib/interpreter-data": "0.17.2",
11-
"crates/air-lib/test-utils": "0.18.0",
11+
"crates/air-lib/test-utils": "0.18.1",
1212
"crates/air-lib/trace-handler": "0.5.12",
1313
"crates/air-lib/utils": "0.3.0",
14-
"crates/beautifier": "0.4.3",
14+
"crates/beautifier": "0.5.0",
1515
"crates/data-store": "0.7.9",
16-
"crates/testing-framework": "0.11.0",
16+
"crates/testing-framework": "0.11.1",
1717
"tools/cli/aquavm-air-cli": "0.2.6",
18-
"tools/wasm/air-beautify-wasm": "0.3.9",
19-
"tools/cli/air": "0.8.0",
18+
"tools/wasm/air-beautify-wasm": "0.4.0",
19+
"tools/cli/air": "0.9.0",
2020
"crates/air-lib/lambda/ast": "0.1.0",
2121
"crates/air-lib/lambda/parser": "0.1.0",
2222
"crates/air-lib/log-targets": "0.1.0",

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

air-interpreter/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.64.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.63.0...air-interpreter-v0.64.0) (2024-06-26)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **air-interpreter:** Synchronize air-interpreter versions
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* aquavm-air bumped from 0.63.0 to 0.64.0
16+
317
## [0.63.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.62.0...air-interpreter-v0.63.0) (2024-04-15)
418

519

air-interpreter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "air-interpreter"
3-
version = "0.63.0"
3+
version = "0.64.0"
44
description = "Crate-wrapper for air"
55
authors = ["Fluence DAO", "Cloudless Labs"]
66
edition = "2021"
@@ -18,7 +18,7 @@ name = "air_interpreter_server"
1818
path = "src/marine.rs"
1919

2020
[dependencies]
21-
aquavm-air = { version = "0.63.0", path = "../air" }
21+
aquavm-air = { version = "0.64.0", path = "../air" }
2222
air-interpreter-interface = { version = "0.19.0", path = "../crates/air-lib/interpreter-interface" }
2323
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
2424

air/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.64.0](https://github.com/fluencelabs/aquavm/compare/air-v0.63.0...air-v0.64.0) (2024-06-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **air:** change fold over canon map iterator contents [fixes VM-620] ([#843](https://github.com/fluencelabs/aquavm/issues/843))
9+
10+
### Features
11+
12+
* **air:** change fold over canon map iterator contents [fixes VM-620] ([#843](https://github.com/fluencelabs/aquavm/issues/843)) ([325cce2](https://github.com/fluencelabs/aquavm/commit/325cce2f548358750324525f27fd662f3dc97192))
13+
314
## [0.63.0](https://github.com/fluencelabs/aquavm/compare/air-v0.62.0...air-v0.63.0) (2024-04-15)
415

516

air/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aquavm-air"
3-
version = "0.63.0"
3+
version = "0.64.0"
44
description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network"
55
authors = ["Fluence DAO", "Cloudless Labs"]
66
edition = "2021"

avm/client/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.64.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.63.0...avm-client-v0.64.0) (2024-06-26)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **avm-client:** Synchronize air-interpreter versions
9+
310
## [0.63.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.62.0...avm-client-v0.63.0) (2024-04-15)
411

512

avm/client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

avm/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@fluencelabs/avm",
33
"description": "Aquamarine VM",
4-
"version": "0.63.0",
4+
"version": "0.64.0",
55
"main": "./dist/index.js",
66
"repository": "https://github.com/fluencelabs/air",
77
"author": "Fluence DAO, Clouldless Labs",

crates/air-lib/test-utils/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@
7575
* dependencies
7676
* aquavm-air bumped from 0.61.0 to 0.62.0
7777

78+
* The following workspace dependencies were updated
79+
* dependencies
80+
* aquavm-air bumped from 0.63.0 to 0.64.0
81+
7882
## [0.18.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.17.1...air-test-utils-v0.18.0) (2024-04-15)
7983

8084

0 commit comments

Comments
 (0)