diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 90735ccce..d4582879f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,11 +1,11 @@ { - "rust/noosphere-api": "0.1.0", - "rust/noosphere-cli": "0.2.0", + "rust/noosphere-api": "0.2.0", + "rust/noosphere-cli": "0.2.1", "rust/noosphere-collections": "0.1.1-alpha.1", "rust/noosphere-core": "0.1.0", "rust/noosphere-into": "0.1.1-alpha.1", "rust/noosphere-ns": "0.1.0", "rust/noosphere-storage": "0.1.0", "rust/noosphere-fs": "0.1.1-alpha.1", - "rust/noosphere": "0.1.0-alpha.1" + "rust/noosphere": "0.1.0" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 3150daac3..0a42e22dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2260,7 +2260,7 @@ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451" [[package]] name = "noosphere" -version = "0.1.0-alpha.1" +version = "0.1.0" dependencies = [ "anyhow", "async-trait", @@ -2289,7 +2289,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "cid", @@ -2311,7 +2311,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "async-trait", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md index b75099f54..250f6a2f2 100644 --- a/rust/noosphere-api/CHANGELOG.md +++ b/rust/noosphere-api/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.1.0...noosphere-api-v0.2.0) (2022-11-09) + + +### ⚠ BREAKING CHANGES + +* The `noosphere-api` Client now holds an owned key instead of a reference. + +### Features + +* Add `noosphere` crate-based Swift package ([#131](https://github.com/subconsciousnetwork/noosphere/issues/131)) ([e1204c2](https://github.com/subconsciousnetwork/noosphere/commit/e1204c2a5822c3c0dbb7e61bbacffb2c1f49d8d8)) + ## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.1.0...noosphere-api-v0.1.0) (2022-11-09) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index c54f86c1b..970cfd2cb 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" +version = "0.2.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 15bfc2429..10731b098 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -4,6 +4,10 @@ * dependencies * noosphere-api bumped from 0.1.0-alpha.1 to 0.1.0 +* The following workspace dependencies were updated + * dependencies + * noosphere-api bumped from 0.1.0 to 0.2.0 + ## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.1.1...noosphere-cli-v0.2.0) (2022-11-09) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index 122589d89..7fae543b7 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.2.0" +version = "0.2.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", path = "../noosphere-core" } noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" } noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" } -noosphere-api = { version = "0.1.0", path = "../noosphere-api" } +noosphere-api = { version = "0.2.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 index f3fe95f20..bbd9e90d2 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.1.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.1.0-alpha.1...noosphere-v0.1.0) (2022-11-09) + + +### ⚠ BREAKING CHANGES + +* The `noosphere-api` Client now holds an owned key instead of a reference. + +### Features + +* Add `noosphere` crate-based Swift package ([#131](https://github.com/subconsciousnetwork/noosphere/issues/131)) ([e1204c2](https://github.com/subconsciousnetwork/noosphere/commit/e1204c2a5822c3c0dbb7e61bbacffb2c1f49d8d8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-api bumped from 0.1.0 to 0.2.0 + ## [0.1.0-alpha.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.1.0-alpha.1...noosphere-v0.1.0-alpha.1) (2022-11-09) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index d7e3119b1..7e16c0c85 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.1.0-alpha.1" +version = "0.1.0" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -34,7 +34,7 @@ url = "^2" noosphere-core = { version = "0.1.0", path = "../noosphere-core" } noosphere-fs = { version = "0.1.1-alpha.1", path = "../noosphere-fs" } noosphere-storage = { version = "0.1.0", path = "../noosphere-storage" } -noosphere-api = { version = "0.1.0", path = "../noosphere-api" } +noosphere-api = { version = "0.2.0", path = "../noosphere-api" } ucan = { version = "0.7.0-alpha.1" } ucan-key-support = { version = "0.7.0-alpha.1" }