chore: release (#329)

This commit is contained in:
Anatoly Laskaris 2022-09-13 19:08:47 +03:00 committed by GitHub
parent 40bb3c843f
commit ca62bd6066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 91 additions and 17 deletions

10
Cargo.lock generated
View File

@ -100,7 +100,7 @@ dependencies = [
[[package]]
name = "air-interpreter-interface"
version = "0.11.0"
version = "0.11.1"
dependencies = [
"fluence-it-types",
"marine-rs-sdk",
@ -294,7 +294,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "avm-data-store"
version = "0.4.0"
version = "0.4.1"
dependencies = [
"serde",
"serde_bytes",
@ -303,7 +303,7 @@ dependencies = [
[[package]]
name = "avm-interface"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"air-interpreter-interface",
"air-utils",
@ -319,7 +319,7 @@ dependencies = [
[[package]]
name = "avm-server"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"air-interpreter-interface",
"air-utils",
@ -1958,7 +1958,7 @@ dependencies = [
[[package]]
name = "polyplets"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"marine-macro",
"marine-rs-sdk-main",

View 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)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-interface"
description = "Fluence AIR VM interfacing"
version = "0.26.0"
version = "0.26.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -16,10 +16,10 @@ name = "avm_interface"
path = "src/lib.rs"
[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" }
avm-data-store = { version = "0.4.0", path = "../../crates/data-store" }
polyplets = { version = "0.3.0", path = "../../crates/air-lib/polyplets" }
avm-data-store = { version = "0.4.1", path = "../../crates/data-store" }
polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" }
thiserror = "1.0.34"
maplit = "1.0.2"

12
avm/server/CHANGELOG.md Normal file
View 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)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.26.0"
version = "0.26.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -16,12 +16,12 @@ name = "avm_server"
path = "src/lib.rs"
[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" }
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"
polyplets = { version = "0.3.0", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.26.0", path = "../../avm/interface" }
polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.26.1", path = "../../avm/interface" }
eyre = "0.6.8"
thiserror = "1.0.34"

View 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)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-interface"
description = "Interface of the AIR interpreter"
version = "0.11.0"
version = "0.11.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View 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)

View File

@ -1,6 +1,6 @@
[package]
name = "polyplets"
version = "0.3.1"
version = "0.3.2"
description = "Security primitives to verify origin of service calls in Fluence network"
authors = ["Fluence Labs"]
edition = "2018"

View 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)

View File

@ -1,6 +1,6 @@
[package]
name = "avm-data-store"
version = "0.4.0"
version = "0.4.1"
description = "Definition of the AVM DataStore trait"
authors = ["Fluence Labs"]
edition = "2018"