mirror of
https://github.com/fluencelabs/aquavm
synced 2025-04-25 07:12:16 +00:00
chore: release (#329)
This commit is contained in:
parent
40bb3c843f
commit
ca62bd6066
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -100,7 +100,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "air-interpreter-interface"
|
name = "air-interpreter-interface"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fluence-it-types",
|
"fluence-it-types",
|
||||||
"marine-rs-sdk",
|
"marine-rs-sdk",
|
||||||
@ -294,7 +294,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "avm-data-store"
|
name = "avm-data-store"
|
||||||
version = "0.4.0"
|
version = "0.4.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"serde_bytes",
|
"serde_bytes",
|
||||||
@ -303,7 +303,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "avm-interface"
|
name = "avm-interface"
|
||||||
version = "0.26.0"
|
version = "0.26.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"air-interpreter-interface",
|
"air-interpreter-interface",
|
||||||
"air-utils",
|
"air-utils",
|
||||||
@ -319,7 +319,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "avm-server"
|
name = "avm-server"
|
||||||
version = "0.26.0"
|
version = "0.26.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"air-interpreter-interface",
|
"air-interpreter-interface",
|
||||||
"air-utils",
|
"air-utils",
|
||||||
@ -1958,7 +1958,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "polyplets"
|
name = "polyplets"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"marine-macro",
|
"marine-macro",
|
||||||
"marine-rs-sdk-main",
|
"marine-rs-sdk-main",
|
||||||
|
16
avm/interface/CHANGELOG.md
Normal file
16
avm/interface/CHANGELOG.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.26.1] - 2022-09-13
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fix clippy warnings (#319)
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Update all non-major Rust dependencies (#309)
|
||||||
|
- Get rid of unsafe code in the interpreter (#303)
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "avm-interface"
|
name = "avm-interface"
|
||||||
description = "Fluence AIR VM interfacing"
|
description = "Fluence AIR VM interfacing"
|
||||||
version = "0.26.0"
|
version = "0.26.1"
|
||||||
authors = ["Fluence Labs"]
|
authors = ["Fluence Labs"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@ -16,10 +16,10 @@ name = "avm_interface"
|
|||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
air-interpreter-interface = { version = "0.11.0", path = "../../crates/air-lib/interpreter-interface", default-features = false }
|
air-interpreter-interface = { version = "0.11.1", path = "../../crates/air-lib/interpreter-interface", default-features = false }
|
||||||
air-utils = { version = "0.1.0", path = "../../crates/air-lib/utils" }
|
air-utils = { version = "0.1.0", path = "../../crates/air-lib/utils" }
|
||||||
avm-data-store = { version = "0.4.0", path = "../../crates/data-store" }
|
avm-data-store = { version = "0.4.1", path = "../../crates/data-store" }
|
||||||
polyplets = { version = "0.3.0", path = "../../crates/air-lib/polyplets" }
|
polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" }
|
||||||
|
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.34"
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
|
12
avm/server/CHANGELOG.md
Normal file
12
avm/server/CHANGELOG.md
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.26.1] - 2022-09-13
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Update all non-major Rust dependencies (#323)
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "avm-server"
|
name = "avm-server"
|
||||||
description = "Fluence AIR VM"
|
description = "Fluence AIR VM"
|
||||||
version = "0.26.0"
|
version = "0.26.1"
|
||||||
authors = ["Fluence Labs"]
|
authors = ["Fluence Labs"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@ -16,12 +16,12 @@ name = "avm_server"
|
|||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
air-interpreter-interface = { version = "0.11.0", path = "../../crates/air-lib/interpreter-interface" }
|
air-interpreter-interface = { version = "0.11.1", path = "../../crates/air-lib/interpreter-interface" }
|
||||||
air-utils = { version = "0.1.0", path = "../../crates/air-lib/utils" }
|
air-utils = { version = "0.1.0", path = "../../crates/air-lib/utils" }
|
||||||
avm-data-store = { version = "0.4.0", path = "../../crates/data-store" }
|
avm-data-store = { version = "0.4.1", path = "../../crates/data-store" }
|
||||||
marine-runtime = "0.23.0"
|
marine-runtime = "0.23.0"
|
||||||
polyplets = { version = "0.3.0", path = "../../crates/air-lib/polyplets" }
|
polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" }
|
||||||
avm-interface = { version = "0.26.0", path = "../../avm/interface" }
|
avm-interface = { version = "0.26.1", path = "../../avm/interface" }
|
||||||
|
|
||||||
eyre = "0.6.8"
|
eyre = "0.6.8"
|
||||||
thiserror = "1.0.34"
|
thiserror = "1.0.34"
|
||||||
|
17
crates/air-lib/interpreter-interface/CHANGELOG.md
Normal file
17
crates/air-lib/interpreter-interface/CHANGELOG.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.11.1] - 2022-09-13
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Update all non-major Rust dependencies (#323)
|
||||||
|
- Update all non-major Rust dependencies (#321)
|
||||||
|
- Update all non-major Rust dependencies (#309)
|
||||||
|
- Get rid of unsafe code in the interpreter (#303)
|
||||||
|
- Refactor `avm-server` interface mod to new crate (#294)
|
||||||
|
- make clippy happy (#291)
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "air-interpreter-interface"
|
name = "air-interpreter-interface"
|
||||||
description = "Interface of the AIR interpreter"
|
description = "Interface of the AIR interpreter"
|
||||||
version = "0.11.0"
|
version = "0.11.1"
|
||||||
authors = ["Fluence Labs"]
|
authors = ["Fluence Labs"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
14
crates/air-lib/polyplets/CHANGELOG.md
Normal file
14
crates/air-lib/polyplets/CHANGELOG.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.3.2] - 2022-09-13
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Update all non-major Rust dependencies (#321)
|
||||||
|
- Update all non-major Rust dependencies (#309)
|
||||||
|
- Get rid of unsafe code in the interpreter (#303)
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "polyplets"
|
name = "polyplets"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
description = "Security primitives to verify origin of service calls in Fluence network"
|
description = "Security primitives to verify origin of service calls in Fluence network"
|
||||||
authors = ["Fluence Labs"]
|
authors = ["Fluence Labs"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
15
crates/data-store/CHANGELOG.md
Normal file
15
crates/data-store/CHANGELOG.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.4.1] - 2022-09-13
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Introduce length functor (#314)
|
||||||
|
- Update all non-major Rust dependencies (#309)
|
||||||
|
- Get rid of unsafe code in the interpreter (#303)
|
||||||
|
- make clippy happy (#291)
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "avm-data-store"
|
name = "avm-data-store"
|
||||||
version = "0.4.0"
|
version = "0.4.1"
|
||||||
description = "Definition of the AVM DataStore trait"
|
description = "Definition of the AVM DataStore trait"
|
||||||
authors = ["Fluence Labs"]
|
authors = ["Fluence Labs"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user