From 864b7f5c1365741e075d99a237fdb8f54d1d4894 Mon Sep 17 00:00:00 2001 From: fluencebot <116741523+fluencebot@users.noreply.github.com> Date: Thu, 13 Apr 2023 16:11:54 +0300 Subject: [PATCH] chore: release master (#83) --- .github/release-please/manifest.json | 6 +++--- Cargo.lock | 4 ++-- aqua/CHANGELOG.md | 8 ++++++++ aqua/package-lock.json | 4 ++-- aqua/package.json | 2 +- service/CHANGELOG.md | 14 ++++++++++++++ service/Cargo.toml | 4 ++-- trust-graph/CHANGELOG.md | 7 +++++++ trust-graph/Cargo.toml | 2 +- 9 files changed, 40 insertions(+), 11 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index ca70cd0..0b49bba 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,6 +1,6 @@ { - "trust-graph": "0.4.0", - "aqua": "0.4.0", - "service": "0.4.0", + "trust-graph": "0.4.1", + "aqua": "0.4.1", + "service": "0.4.1", "keypair": "0.10.0" } diff --git a/Cargo.lock b/Cargo.lock index 1a63c7f..32eda47 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2897,7 +2897,7 @@ dependencies = [ [[package]] name = "trust-graph" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bs58", "derivative", @@ -2914,7 +2914,7 @@ dependencies = [ [[package]] name = "trust-graph-wasm" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "bincode", diff --git a/aqua/CHANGELOG.md b/aqua/CHANGELOG.md index f4dc2e9..3e02e58 100644 --- a/aqua/CHANGELOG.md +++ b/aqua/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-api-v0.4.0...trust-graph-api-v0.4.1) (2023-04-13) + + +### Bug Fixes + +* **deps:** update aqua to 0.10.3 ([fe902ac](https://github.com/fluencelabs/trust-graph/commit/fe902acc50a6b4c6bf97c487f3e47ae0f5ef8a95)) +* **deps:** update aqua-lib to 0.7.0 ([fe902ac](https://github.com/fluencelabs/trust-graph/commit/fe902acc50a6b4c6bf97c487f3e47ae0f5ef8a95)) + ## [0.4.0](https://github.com/fluencelabs/trust-graph/compare/trust-graph-api-v0.3.2...trust-graph-api-v0.4.0) (2023-03-15) diff --git a/aqua/package-lock.json b/aqua/package-lock.json index 6f11cc6..4b8176d 100644 --- a/aqua/package-lock.json +++ b/aqua/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fluencelabs/trust-graph", - "version": "0.4.0", + "version": "0.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fluencelabs/trust-graph", - "version": "0.4.0", + "version": "0.4.1", "license": "MIT", "dependencies": { "@fluencelabs/aqua-lib": "^0.7.0" diff --git a/aqua/package.json b/aqua/package.json index 7eb1283..729689f 100644 --- a/aqua/package.json +++ b/aqua/package.json @@ -1,6 +1,6 @@ { "name": "@fluencelabs/trust-graph", - "version": "0.4.0", + "version": "0.4.1", "description": "Aqua Trust Graph API library", "files": [ "*.aqua" diff --git a/service/CHANGELOG.md b/service/CHANGELOG.md index cb911dc..ce6dd34 100644 --- a/service/CHANGELOG.md +++ b/service/CHANGELOG.md @@ -4,6 +4,20 @@ 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.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-wasm-v0.4.0...trust-graph-wasm-v0.4.1) (2023-04-13) + + +### Bug Fixes + +* **deps:** Add trust-graph to workspace and bump sqlite-wasm version ([#87](https://github.com/fluencelabs/trust-graph/issues/87)) ([da38a41](https://github.com/fluencelabs/trust-graph/commit/da38a41ba727a14774a71bba6612b1bf1f498db9)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * trust-graph bumped from 0.4.0 to 0.4.1 + ## [0.4.0](https://github.com/fluencelabs/trust-graph/compare/trust-graph-wasm-v0.3.2...trust-graph-wasm-v0.4.0) (2023-03-15) diff --git a/service/Cargo.toml b/service/Cargo.toml index 99e311c..5be1cb1 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trust-graph-wasm" -version = "0.4.0" +version = "0.4.1" authors = ["Fluence Labs"] edition = "2021" description = "trust graph wasm" @@ -12,7 +12,7 @@ name = "trust-graph" path = "src/main.rs" [dependencies] -trust-graph = { version = "0.4.0", path = "../trust-graph" } +trust-graph = { version = "0.4.1", path = "../trust-graph" } fluence-keypair = { version = "0.10.0", 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 72487e9..0c6bc29 100644 --- a/trust-graph/CHANGELOG.md +++ b/trust-graph/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.1](https://github.com/fluencelabs/trust-graph/compare/trust-graph-v0.4.0...trust-graph-v0.4.1) (2023-04-13) + + +### Miscellaneous Chores + +* **trust-graph:** Synchronize trust-graph, wasm and api versions + ## [0.4.0](https://github.com/fluencelabs/trust-graph/compare/trust-graph-v0.3.2...trust-graph-v0.4.0) (2023-03-15) diff --git a/trust-graph/Cargo.toml b/trust-graph/Cargo.toml index e4c96d3..427d472 100644 --- a/trust-graph/Cargo.toml +++ b/trust-graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trust-graph" -version = "0.4.0" +version = "0.4.1" authors = ["Fluence Labs"] edition = "2021" description = "trust graph"