chore: release master (#92)

This commit is contained in:
fluencebot 2023-05-03 15:58:12 +03:00 committed by GitHub
parent 9b942eacca
commit d567848cba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 28 additions and 12 deletions

View File

@ -1,6 +1,6 @@
{ {
"trust-graph": "0.4.1", "trust-graph": "0.4.2",
"aqua": "0.4.1", "aqua": "0.4.1",
"service": "0.4.1", "service": "0.4.2",
"keypair": "0.10.0" "keypair": "0.10.1"
} }

6
Cargo.lock generated
View File

@ -963,7 +963,7 @@ dependencies = [
[[package]] [[package]]
name = "fluence-keypair" name = "fluence-keypair"
version = "0.10.0" version = "0.10.1"
dependencies = [ dependencies = [
"asn1_der 0.6.3", "asn1_der 0.6.3",
"bs58", "bs58",
@ -2897,7 +2897,7 @@ dependencies = [
[[package]] [[package]]
name = "trust-graph" name = "trust-graph"
version = "0.4.1" version = "0.4.2"
dependencies = [ dependencies = [
"bs58", "bs58",
"derivative", "derivative",
@ -2914,7 +2914,7 @@ dependencies = [
[[package]] [[package]]
name = "trust-graph-wasm" name = "trust-graph-wasm"
version = "0.4.1" version = "0.4.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",

View File

@ -4,6 +4,13 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.10.1](https://github.com/fluencelabs/trust-graph/compare/keypair-v0.10.0...keypair-v0.10.1) (2023-05-02)
### Features
* **keypair:** Make `KeyFormat` more convenient ([#91](https://github.com/fluencelabs/trust-graph/issues/91)) ([9b942ea](https://github.com/fluencelabs/trust-graph/commit/9b942eacca49d0468b4d7512667102363a6c9aa3))
## [0.10.0](https://github.com/fluencelabs/trust-graph/compare/keypair-v0.9.0...keypair-v0.10.0) (2023-03-15) ## [0.10.0](https://github.com/fluencelabs/trust-graph/compare/keypair-v0.9.0...keypair-v0.10.0) (2023-03-15)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fluence-keypair" name = "fluence-keypair"
version = "0.10.0" version = "0.10.1"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
description = "identity" description = "identity"

View File

@ -4,6 +4,11 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* The following workspace dependencies were updated
* dependencies
* trust-graph bumped from 0.4.1 to 0.4.2
* fluence-keypair bumped from 0.10.0 to 0.10.1
## [0.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-wasm-v0.4.0...trust-graph-wasm-v0.4.1) (2023-04-13) ## [0.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-wasm-v0.4.0...trust-graph-wasm-v0.4.1) (2023-04-13)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "trust-graph-wasm" name = "trust-graph-wasm"
version = "0.4.1" version = "0.4.2"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
description = "trust graph wasm" description = "trust graph wasm"
@ -12,8 +12,8 @@ name = "trust-graph"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
trust-graph = { version = "0.4.1", path = "../trust-graph" } trust-graph = { version = "0.4.2", path = "../trust-graph" }
fluence-keypair = { version = "0.10.0", path = "../keypair" } fluence-keypair = { version = "0.10.1", path = "../keypair" }
marine-rs-sdk = { version = "0.7.1", features = ["logger"] } marine-rs-sdk = { version = "0.7.1", features = ["logger"] }
marine-sqlite-connector = "0.8.0" marine-sqlite-connector = "0.8.0"

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
* The following workspace dependencies were updated
* dependencies
* fluence-keypair bumped from 0.10.0 to 0.10.1
## [0.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-v0.4.0...trust-graph-v0.4.1) (2023-04-13) ## [0.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-v0.4.0...trust-graph-v0.4.1) (2023-04-13)

View File

@ -1,6 +1,6 @@
[package] [package]
name = "trust-graph" name = "trust-graph"
version = "0.4.1" version = "0.4.2"
authors = ["Fluence Labs"] authors = ["Fluence Labs"]
edition = "2021" edition = "2021"
description = "trust graph" description = "trust graph"
@ -10,7 +10,7 @@ repository = "https://github.com/fluencelabs/trust-graph"
[dependencies] [dependencies]
serde = { version = "1.0.118", features = ["derive"] } serde = { version = "1.0.118", features = ["derive"] }
fluence-keypair = { path = "../keypair", version = "0.10.0" } fluence-keypair = { path = "../keypair", version = "0.10.1" }
bs58 = "0.4.0" bs58 = "0.4.0"
failure = "0.1.6" failure = "0.1.6"
log = "0.4.11" log = "0.4.11"