From c063059adf98557592b7ea9f999c0dc30ff706a6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 3 Nov 2022 09:44:59 -0700 Subject: [PATCH] chore: release main (#121) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 7 ++++--- Cargo.lock | 6 +++--- rust/noosphere-api/CHANGELOG.md | 8 ++++++++ rust/noosphere-api/Cargo.toml | 2 +- rust/noosphere-cli/CHANGELOG.md | 4 ++++ rust/noosphere-cli/Cargo.toml | 4 ++-- rust/noosphere/CHANGELOG.md | 15 +++++++++++++++ rust/noosphere/Cargo.toml | 4 ++-- 8 files changed, 39 insertions(+), 11 deletions(-) create mode 100644 rust/noosphere-api/CHANGELOG.md create mode 100644 rust/noosphere/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 47814304e..4940dbc36 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,10 +1,11 @@ { - "rust/noosphere-api": "0.1.0-alpha.1", - "rust/noosphere-cli": "0.1.0", + "rust/noosphere-api": "0.1.0", + "rust/noosphere-cli": "0.1.1", "rust/noosphere-collections": "0.1.0-alpha.1", "rust/noosphere-core": "0.1.0-alpha.1", "rust/noosphere-into": "0.1.0-alpha.1", "rust/noosphere-ns": "0.1.0-alpha.1", "rust/noosphere-storage": "0.1.0-alpha.1", - "rust/noosphere-fs": "0.1.0-alpha.1" + "rust/noosphere-fs": "0.1.0-alpha.1", + "rust/noosphere": "0.1.0-alpha.1" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 14f8eb171..b8d31f952 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2259,7 +2259,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" [[package]] name = "noosphere" -version = "0.1.0" +version = "0.1.0-alpha.1" dependencies = [ "anyhow", "lazy_static", @@ -2275,7 +2275,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.1.0-alpha.1" +version = "0.1.0" dependencies = [ "anyhow", "cid", @@ -2297,7 +2297,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-trait", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md new file mode 100644 index 000000000..352165ed8 --- /dev/null +++ b/rust/noosphere-api/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.1.0-alpha.1...noosphere-api-v0.1.0) (2022-11-03) + + +### Bug Fixes + +* **api:** Use rustls instead of OpenSSL ([1a0625a](https://github.com/subconsciousnetwork/noosphere/commit/1a0625ad79330d35ca137361297318bdbf29137e)) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index a80926651..090a7b2ed 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-api" -version = "0.1.0-alpha.1" +version = "0.1.0" edition = "2021" description = "Type information pertinent to the REST API of the gateway server that is a part of the Noosphere CLI" keywords = ["rest", "api", "noosphere", "p2p"] diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index fc8dcddc2..83d7e6781 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0 + ## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.1.0-alpha.1...noosphere-cli-v0.1.0) (2022-10-31) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index 0a1dfadd7..21d651f5b 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol" keywords = ["cli", "sync", "noosphere", "p2p", "ucan"] @@ -49,7 +49,7 @@ globset = "~0.4" noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" } noosphere-fs = { version = "0.1.0-alpha.1", path = "../noosphere-fs" } noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" } -noosphere-api = { version = "0.1.0-alpha.1", path = "../noosphere-api" } +noosphere-api = { version = "0.1.0", path = "../noosphere-api" } ucan = { version = "0.7.0-alpha.1" } ucan-key-support = { version = "0.7.0-alpha.1" } cid = "~0.8" diff --git a/rust/noosphere/CHANGELOG.md b/rust/noosphere/CHANGELOG.md new file mode 100644 index 000000000..9a66d4bfb --- /dev/null +++ b/rust/noosphere/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## 0.1.0-alpha.1 (2022-11-03) + + +### Features + +* **noosphere:** Introduce `noosphere` crate ([#123](https://github.com/subconsciousnetwork/noosphere/issues/123)) ([ad9daa6](https://github.com/subconsciousnetwork/noosphere/commit/ad9daa697067069197d12ee8e7f11bdbedc3662d)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0 diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index 12a236ae3..1090a4330 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.1.0" +version = "0.1.0-alpha.1" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -31,7 +31,7 @@ lazy_static = "^1" noosphere-core = { version = "0.1.0-alpha.1", path = "../noosphere-core" } noosphere-fs = { version = "0.1.0-alpha.1", path = "../noosphere-fs" } noosphere-storage = { version = "0.1.0-alpha.1", path = "../noosphere-storage" } -noosphere-api = { version = "0.1.0-alpha.1", path = "../noosphere-api" } +noosphere-api = { version = "0.1.0", path = "../noosphere-api" } ucan = { version = "0.7.0-alpha.1" } ucan-key-support = { version = "0.7.0-alpha.1" }