From d567848cba2cb6f5c0d861ed2c736b7cb5efd576 Mon Sep 17 00:00:00 2001 From: fluencebot <116741523+fluencebot@users.noreply.github.com> Date: Wed, 3 May 2023 15:58:12 +0300 Subject: [PATCH] chore: release master (#92) --- .github/release-please/manifest.json | 6 +++--- Cargo.lock | 6 +++--- keypair/CHANGELOG.md | 7 +++++++ keypair/Cargo.toml | 2 +- service/CHANGELOG.md | 5 +++++ service/Cargo.toml | 6 +++--- trust-graph/CHANGELOG.md | 4 ++++ trust-graph/Cargo.toml | 4 ++-- 8 files changed, 28 insertions(+), 12 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 0b49bba..1e60b95 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,6 +1,6 @@ { - "trust-graph": "0.4.1", + "trust-graph": "0.4.2", "aqua": "0.4.1", - "service": "0.4.1", - "keypair": "0.10.0" + "service": "0.4.2", + "keypair": "0.10.1" } diff --git a/Cargo.lock b/Cargo.lock index 32eda47..b5d9433 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -963,7 +963,7 @@ dependencies = [ [[package]] name = "fluence-keypair" -version = "0.10.0" +version = "0.10.1" dependencies = [ "asn1_der 0.6.3", "bs58", @@ -2897,7 +2897,7 @@ dependencies = [ [[package]] name = "trust-graph" -version = "0.4.1" +version = "0.4.2" dependencies = [ "bs58", "derivative", @@ -2914,7 +2914,7 @@ dependencies = [ [[package]] name = "trust-graph-wasm" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "bincode", diff --git a/keypair/CHANGELOG.md b/keypair/CHANGELOG.md index 86a4e2e..309e2c1 100644 --- a/keypair/CHANGELOG.md +++ b/keypair/CHANGELOG.md @@ -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/), 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) diff --git a/keypair/Cargo.toml b/keypair/Cargo.toml index 9349996..4b3101f 100644 --- a/keypair/Cargo.toml +++ b/keypair/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence-keypair" -version = "0.10.0" +version = "0.10.1" authors = ["Fluence Labs"] edition = "2021" description = "identity" diff --git a/service/CHANGELOG.md b/service/CHANGELOG.md index ce6dd34..317a17d 100644 --- a/service/CHANGELOG.md +++ b/service/CHANGELOG.md @@ -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/), 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) diff --git a/service/Cargo.toml b/service/Cargo.toml index 5be1cb1..000331d 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trust-graph-wasm" -version = "0.4.1" +version = "0.4.2" authors = ["Fluence Labs"] edition = "2021" description = "trust graph wasm" @@ -12,8 +12,8 @@ name = "trust-graph" path = "src/main.rs" [dependencies] -trust-graph = { version = "0.4.1", path = "../trust-graph" } -fluence-keypair = { version = "0.10.0", path = "../keypair" } +trust-graph = { version = "0.4.2", path = "../trust-graph" } +fluence-keypair = { version = "0.10.1", path = "../keypair" } marine-rs-sdk = { version = "0.7.1", features = ["logger"] } marine-sqlite-connector = "0.8.0" diff --git a/trust-graph/CHANGELOG.md b/trust-graph/CHANGELOG.md index 0c6bc29..36e0084 100644 --- a/trust-graph/CHANGELOG.md +++ b/trust-graph/CHANGELOG.md @@ -1,5 +1,9 @@ # 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) diff --git a/trust-graph/Cargo.toml b/trust-graph/Cargo.toml index 427d472..f6ddd86 100644 --- a/trust-graph/Cargo.toml +++ b/trust-graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trust-graph" -version = "0.4.1" +version = "0.4.2" authors = ["Fluence Labs"] edition = "2021" description = "trust graph" @@ -10,7 +10,7 @@ repository = "https://github.com/fluencelabs/trust-graph" [dependencies] 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" failure = "0.1.6" log = "0.4.11"