diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 89a20ba5..314449a4 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,6 +1,6 @@ { - ".": "0.3.2", - "aqua": "0.3.2", - "service": "0.3.2", - "keypair": "0.9.0" + ".": "0.4.0", + "aqua": "0.4.0", + "service": "0.4.0", + "keypair": "0.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..72487e9c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog + +## [0.4.0](https://github.com/fluencelabs/trust-graph/compare/trust-graph-v0.3.2...trust-graph-v0.4.0) (2023-03-15) + + +### ⚠ BREAKING CHANGES + +* **deps:** update libp2p to 0.39.1 and other deps ([#77](https://github.com/fluencelabs/trust-graph/issues/77)) + +### Features + +* **deps:** update libp2p to 0.39.1 and other deps ([#77](https://github.com/fluencelabs/trust-graph/issues/77)) ([080503d](https://github.com/fluencelabs/trust-graph/commit/080503dcfa2ecf8d09167ff9fe7f750fadf49035)) +* **keypair:** add KeyPair::from_secret_key ([#50](https://github.com/fluencelabs/trust-graph/issues/50)) ([a6ce8d9](https://github.com/fluencelabs/trust-graph/commit/a6ce8d9eee20e1ea24eb27c38ac6df6d878292ae)) + + +### Bug Fixes + +* **deps:** Update libp2p-core to 0.38 ([#51](https://github.com/fluencelabs/trust-graph/issues/51)) ([015422e](https://github.com/fluencelabs/trust-graph/commit/015422efcce41530a6cd84a25091598bc459d2e6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * fluence-keypair bumped from 0.9.0 to 0.10.0 diff --git a/Cargo.lock b/Cargo.lock index cc732b62..315ca3bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -797,7 +797,7 @@ dependencies = [ [[package]] name = "fluence-keypair" -version = "0.9.0" +version = "0.10.0" dependencies = [ "asn1_der 0.6.3", "bs58", @@ -2570,7 +2570,7 @@ dependencies = [ [[package]] name = "trust-graph" -version = "0.3.0" +version = "0.4.0" dependencies = [ "bs58", "derivative", @@ -2587,7 +2587,7 @@ dependencies = [ [[package]] name = "trust-graph-wasm" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 293331a2..4df8d445 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trust-graph" -version = "0.3.0" +version = "0.4.0" 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.9.0" } +fluence-keypair = { path = "./keypair", version = "0.10.0" } bs58 = "0.4.0" failure = "0.1.6" log = "0.4.11" diff --git a/aqua/CHANGELOG.md b/aqua/CHANGELOG.md new file mode 100644 index 00000000..f4dc2e98 --- /dev/null +++ b/aqua/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [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) + + +### Miscellaneous Chores + +* **trust-graph-api:** Synchronize trust-graph, wasm and api versions diff --git a/aqua/package-lock.json b/aqua/package-lock.json index 4235cad0..fb4f701e 100644 --- a/aqua/package-lock.json +++ b/aqua/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fluencelabs/trust-graph", - "version": "0.2.2", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fluencelabs/trust-graph", - "version": "0.2.2", + "version": "0.4.0", "license": "MIT", "dependencies": { "@fluencelabs/aqua-lib": "^0.5.2" diff --git a/aqua/package.json b/aqua/package.json index d57cab3a..766cc90e 100644 --- a/aqua/package.json +++ b/aqua/package.json @@ -1,6 +1,6 @@ { "name": "@fluencelabs/trust-graph", - "version": "0.2.2", + "version": "0.4.0", "description": "Aqua Trust Graph API library", "files": [ "*.aqua" diff --git a/keypair/CHANGELOG.md b/keypair/CHANGELOG.md index efc5328c..86a4e2e0 100644 --- a/keypair/CHANGELOG.md +++ b/keypair/CHANGELOG.md @@ -4,6 +4,18 @@ 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.0](https://github.com/fluencelabs/trust-graph/compare/keypair-v0.9.0...keypair-v0.10.0) (2023-03-15) + + +### ⚠ BREAKING CHANGES + +* **deps:** update libp2p to 0.39.1 and other deps ([#77](https://github.com/fluencelabs/trust-graph/issues/77)) + +### Features + +* **deps:** update libp2p to 0.39.1 and other deps ([#77](https://github.com/fluencelabs/trust-graph/issues/77)) ([080503d](https://github.com/fluencelabs/trust-graph/commit/080503dcfa2ecf8d09167ff9fe7f750fadf49035)) +* **keypair:** add KeyPair::from_secret_key ([#50](https://github.com/fluencelabs/trust-graph/issues/50)) ([a6ce8d9](https://github.com/fluencelabs/trust-graph/commit/a6ce8d9eee20e1ea24eb27c38ac6df6d878292ae)) + ## [Unreleased] ## [0.8.1] - 2022-10-06 diff --git a/keypair/Cargo.toml b/keypair/Cargo.toml index 71db7ba2..9349996d 100644 --- a/keypair/Cargo.toml +++ b/keypair/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fluence-keypair" -version = "0.9.0" +version = "0.10.0" authors = ["Fluence Labs"] edition = "2021" description = "identity" diff --git a/service/CHANGELOG.md b/service/CHANGELOG.md index 2923be80..cb911dc9 100644 --- a/service/CHANGELOG.md +++ b/service/CHANGELOG.md @@ -4,6 +4,26 @@ 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.0](https://github.com/fluencelabs/trust-graph/compare/trust-graph-wasm-v0.3.2...trust-graph-wasm-v0.4.0) (2023-03-15) + + +### ⚠ BREAKING CHANGES + +* **deps:** update libp2p to 0.39.1 and other deps ([#77](https://github.com/fluencelabs/trust-graph/issues/77)) + +### Features + +* **deps:** update libp2p to 0.39.1 and other deps ([#77](https://github.com/fluencelabs/trust-graph/issues/77)) ([080503d](https://github.com/fluencelabs/trust-graph/commit/080503dcfa2ecf8d09167ff9fe7f750fadf49035)) +* **keypair:** add KeyPair::from_secret_key ([#50](https://github.com/fluencelabs/trust-graph/issues/50)) ([a6ce8d9](https://github.com/fluencelabs/trust-graph/commit/a6ce8d9eee20e1ea24eb27c38ac6df6d878292ae)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * trust-graph bumped from 0.3.0 to 0.4.0 + * fluence-keypair bumped from 0.9.0 to 0.10.0 + ## [Unreleased] ## [0.3.1] - 2022-10-06 diff --git a/service/Cargo.toml b/service/Cargo.toml index 6e2499ed..fff10f8e 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trust-graph-wasm" -version = "0.3.1" +version = "0.4.0" 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.3.0", path = "../." } -fluence-keypair = { version = "0.9.0", path = "../keypair" } +trust-graph = { version = "0.4.0", path = "../." } +fluence-keypair = { version = "0.10.0", path = "../keypair" } marine-rs-sdk = { version = "0.7.1", features = ["logger"] } marine-sqlite-connector = "0.8.0"