diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e9186bfe..e076e7c1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - "rust/noosphere-cli": "0.17.0", - "rust/noosphere-collections": "0.7.1", - "rust/noosphere-core": "0.18.1", - "rust/noosphere-into": "0.11.6", - "rust/noosphere-ns": "0.12.0", - "rust/noosphere-storage": "0.10.1", - "rust/noosphere": "0.16.1", - "rust/noosphere-ipfs": "0.8.6", - "rust/noosphere-gateway": "0.12.0", + "rust/noosphere-cli": "0.17.1", + "rust/noosphere-collections": "0.7.2", + "rust/noosphere-core": "0.18.2", + "rust/noosphere-into": "0.11.7", + "rust/noosphere-ns": "0.12.1", + "rust/noosphere-storage": "0.10.2", + "rust/noosphere": "0.16.2", + "rust/noosphere-ipfs": "0.8.7", + "rust/noosphere-gateway": "0.12.1", "rust/noosphere-common": "0.1.2", - "rust/noosphere-ucan": "0.4.0" + "rust/noosphere-ucan": "0.4.1" } diff --git a/Cargo.lock b/Cargo.lock index 683ff096..22f94dfc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.16.1" +version = "0.16.2" dependencies = [ "anyhow", "async-stream", @@ -3192,7 +3192,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.17.0" +version = "0.17.1" dependencies = [ "anyhow", "async-trait", @@ -3234,7 +3234,7 @@ dependencies = [ [[package]] name = "noosphere-collections" -version = "0.7.1" +version = "0.7.2" dependencies = [ "anyhow", "async-recursion", @@ -3275,7 +3275,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.18.1" +version = "0.18.2" dependencies = [ "anyhow", "async-once-cell", @@ -3329,7 +3329,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.12.0" +version = "0.12.1" dependencies = [ "anyhow", "async-stream", @@ -3367,7 +3367,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.11.6" +version = "0.11.7" dependencies = [ "anyhow", "async-stream", @@ -3395,7 +3395,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.8.6" +version = "0.8.7" dependencies = [ "anyhow", "async-stream", @@ -3425,7 +3425,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.12.0" +version = "0.12.1" dependencies = [ "anyhow", "async-trait", @@ -3460,7 +3460,7 @@ dependencies = [ [[package]] name = "noosphere-storage" -version = "0.10.1" +version = "0.10.2" dependencies = [ "anyhow", "async-stream", @@ -3494,7 +3494,7 @@ dependencies = [ [[package]] name = "noosphere-ucan" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "async-recursion", diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index 42a9696a..f752cc2f 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -213,6 +213,13 @@ * noosphere-ns bumped from 0.11.3 to 0.11.4 * noosphere bumped from 0.15.3 to 0.15.4 +## [0.17.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.17.0...noosphere-cli-v0.17.1) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + ## [0.17.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.16.0...noosphere-cli-v0.17.0) (2024-01-30) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index 075930a6..5d6abab7 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.17.0" +version = "0.17.1" edition = "2021" description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol" keywords = ["cli", "sync", "noosphere", "p2p", "ucan"] diff --git a/rust/noosphere-collections/CHANGELOG.md b/rust/noosphere-collections/CHANGELOG.md index 31ae74d8..e56c971c 100644 --- a/rust/noosphere-collections/CHANGELOG.md +++ b/rust/noosphere-collections/CHANGELOG.md @@ -44,6 +44,8 @@ * dependencies * noosphere-storage bumped from 0.10.0 to 0.10.1 + + ## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.6.7...noosphere-collections-v0.7.0) (2023-11-21) diff --git a/rust/noosphere-collections/Cargo.toml b/rust/noosphere-collections/Cargo.toml index 9cd7f829..754c1cad 100644 --- a/rust/noosphere-collections/Cargo.toml +++ b/rust/noosphere-collections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-collections" -version = "0.7.1" +version = "0.7.2" edition = "2021" description = "Collection data types that are needed by an efficient implementation of Noosphere's IPLD data structures" keywords = ["hamt", "ipld", "noosphere", "p2p", "async"] diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index a4f4296b..8aa00fab 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -10,6 +10,18 @@ * noosphere-storage bumped from 0.7.0 to 0.7.1 * noosphere-collections bumped from 0.6.0 to 0.6.1 +## [0.18.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.18.1...noosphere-core-v0.18.2) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + + +### Bug Fixes + +* some fixes for downstream cloud hosting work: ([#850](https://github.com/subconsciousnetwork/noosphere/issues/850)) ([2525625](https://github.com/subconsciousnetwork/noosphere/commit/2525625c3239f8886bbbd2a713bb9fde08fc693e)) + ## [0.18.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.18.0...noosphere-core-v0.18.1) (2024-01-30) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index 6bef116c..86c8052e 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-core" -version = "0.18.1" +version = "0.18.2" edition = "2021" description = "Core data types of the Rust Noosphere implementation" keywords = ["hamt", "ipld", "noosphere", "p2p", "async"] diff --git a/rust/noosphere-gateway/CHANGELOG.md b/rust/noosphere-gateway/CHANGELOG.md index 48595c23..7be7a76b 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -105,6 +105,18 @@ * dependencies * noosphere-ns bumped from 0.9.3 to 0.9.4 +## [0.12.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.12.0...noosphere-gateway-v0.12.1) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + + +### Bug Fixes + +* some fixes for downstream cloud hosting work: ([#850](https://github.com/subconsciousnetwork/noosphere/issues/850)) ([2525625](https://github.com/subconsciousnetwork/noosphere/commit/2525625c3239f8886bbbd2a713bb9fde08fc693e)) + ## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.11.0...noosphere-gateway-v0.12.0) (2024-01-30) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 6860c246..4a4104b8 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-gateway" -version = "0.12.0" +version = "0.12.1" edition = "2021" description = "A geist on the network that enables user spheres to discover each other" keywords = ["http", "geist", "noosphere", "p2p", "ucan"] diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index a6ffed2b..9a273e0f 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -176,6 +176,13 @@ * dev-dependencies * noosphere-core bumped from 0.18.0 to 0.18.1 +## [0.11.7](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.6...noosphere-into-v0.11.7) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + ## [0.11.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.1...noosphere-into-v0.11.2) (2023-10-06) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index ef3b8529..c6fddd0f 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.11.6" +version = "0.11.7" edition = "2021" description = "Transformations of Noosphere content into various target formats" keywords = ["html", "ipld", "noosphere", "subtext", "transcode"] diff --git a/rust/noosphere-ipfs/CHANGELOG.md b/rust/noosphere-ipfs/CHANGELOG.md index c2dcaa1c..8bf03af6 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -76,6 +76,8 @@ * dev-dependencies * noosphere-core bumped from 0.18.0 to 0.18.1 + + ## [0.8.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.8.2...noosphere-ipfs-v0.8.3) (2023-10-12) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index ea7e66b2..a9dbade5 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.8.6" +version = "0.8.7" edition = "2021" description = "An interface for an IPFS client." keywords = [ diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index 1876efc9..b3c613d6 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -135,6 +135,13 @@ * noosphere bumped from 0.15.3 to 0.15.4 * noosphere-ipfs bumped from 0.8.3 to 0.8.4 +## [0.12.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.12.0...noosphere-ns-v0.12.1) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + ## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.11.5...noosphere-ns-v0.12.0) (2024-01-30) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index 104e414b..99de52ad 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.12.0" +version = "0.12.1" edition = "2021" description = "A P2P name system for Noosphere" keywords = [ diff --git a/rust/noosphere-storage/CHANGELOG.md b/rust/noosphere-storage/CHANGELOG.md index 34645709..910ebbff 100644 --- a/rust/noosphere-storage/CHANGELOG.md +++ b/rust/noosphere-storage/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.10.1...noosphere-storage-v0.10.2) (2024-04-22) + + +### Bug Fixes + +* some fixes for downstream cloud hosting work: ([#850](https://github.com/subconsciousnetwork/noosphere/issues/850)) ([2525625](https://github.com/subconsciousnetwork/noosphere/commit/2525625c3239f8886bbbd2a713bb9fde08fc693e)) + ## [0.10.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.10.0...noosphere-storage-v0.10.1) (2024-01-30) diff --git a/rust/noosphere-storage/Cargo.toml b/rust/noosphere-storage/Cargo.toml index a0cedab4..dc8e98f7 100644 --- a/rust/noosphere-storage/Cargo.toml +++ b/rust/noosphere-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-storage" -version = "0.10.1" +version = "0.10.2" edition = "2021" description = "Pluggable backing storage for the Rust Noosphere implementation" keywords = ["storage", "noosphere", "sled", "ipld", "indexeddb"] diff --git a/rust/noosphere-ucan/CHANGELOG.md b/rust/noosphere-ucan/CHANGELOG.md new file mode 100644 index 00000000..5c061d85 --- /dev/null +++ b/rust/noosphere-ucan/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +## [0.4.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ucan-v0.4.0...noosphere-ucan-v0.4.1) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + + +### Bug Fixes + +* some fixes for downstream cloud hosting work: ([#850](https://github.com/subconsciousnetwork/noosphere/issues/850)) ([2525625](https://github.com/subconsciousnetwork/noosphere/commit/2525625c3239f8886bbbd2a713bb9fde08fc693e)) diff --git a/rust/noosphere-ucan/Cargo.toml b/rust/noosphere-ucan/Cargo.toml index 0e5bb0fa..6015d011 100644 --- a/rust/noosphere-ucan/Cargo.toml +++ b/rust/noosphere-ucan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ucan" -version = "0.4.0" +version = "0.4.1" edition = "2021" description = "Implement UCAN-based authorization with conciseness and ease!" keywords = ["ucan", "authz", "jwt", "pki"] diff --git a/rust/noosphere/CHANGELOG.md b/rust/noosphere/CHANGELOG.md index 16f212f2..aafbd593 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -102,6 +102,13 @@ * dev-dependencies * noosphere-core bumped from 0.18.0 to 0.18.1 +## [0.16.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.16.1...noosphere-v0.16.2) (2024-04-22) + + +### Features + +* Move "noosphere-ucan-key-support" features into "noosphere-ucan" under feature flags, replace ed25519-zebra with ed25519-dalek. ([#840](https://github.com/subconsciousnetwork/noosphere/issues/840)) ([78a4056](https://github.com/subconsciousnetwork/noosphere/commit/78a40561dc8a6d2537f28ba8cc252eadad560167)) + ## [0.16.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.15.4...noosphere-v0.16.0) (2023-11-21) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index 1a97dc48..53a3dc14 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.16.1" +version = "0.16.2" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"]