Skip to content
This repository was archived by the owner on Sep 21, 2024. It is now read-only.

Commit 759f44f

Browse files
chore: release main
1 parent f0f116c commit 759f44f

File tree

22 files changed

+86
-30
lines changed

22 files changed

+86
-30
lines changed

.release-please-manifest.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"rust/noosphere-cli": "0.17.0",
3-
"rust/noosphere-collections": "0.7.1",
4-
"rust/noosphere-core": "0.18.1",
5-
"rust/noosphere-into": "0.11.6",
6-
"rust/noosphere-ns": "0.12.0",
7-
"rust/noosphere-storage": "0.10.1",
8-
"rust/noosphere": "0.16.1",
9-
"rust/noosphere-ipfs": "0.8.6",
10-
"rust/noosphere-gateway": "0.12.0",
2+
"rust/noosphere-cli": "0.17.1",
3+
"rust/noosphere-collections": "0.7.2",
4+
"rust/noosphere-core": "0.18.2",
5+
"rust/noosphere-into": "0.11.7",
6+
"rust/noosphere-ns": "0.12.1",
7+
"rust/noosphere-storage": "0.10.2",
8+
"rust/noosphere": "0.16.2",
9+
"rust/noosphere-ipfs": "0.8.7",
10+
"rust/noosphere-gateway": "0.12.1",
1111
"rust/noosphere-common": "0.1.2",
12-
"rust/noosphere-ucan": "0.4.0"
12+
"rust/noosphere-ucan": "0.4.1"
1313
}

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/noosphere-cli/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,13 @@
213213
* noosphere-ns bumped from 0.11.3 to 0.11.4
214214
* noosphere bumped from 0.15.3 to 0.15.4
215215

216+
## [0.17.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.17.0...noosphere-cli-v0.17.1) (2024-03-28)
217+
218+
219+
### Features
220+
221+
* 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))
222+
216223
## [0.17.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.16.0...noosphere-cli-v0.17.0) (2024-01-30)
217224

218225

rust/noosphere-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-cli"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
edition = "2021"
55
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
66
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]

rust/noosphere-collections/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
* dependencies
4545
* noosphere-storage bumped from 0.10.0 to 0.10.1
4646

47+
48+
4749
## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.6.7...noosphere-collections-v0.7.0) (2023-11-21)
4850

4951

rust/noosphere-collections/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-collections"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition = "2021"
55
description = "Collection data types that are needed by an efficient implementation of Noosphere's IPLD data structures"
66
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]

rust/noosphere-core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
* noosphere-storage bumped from 0.7.0 to 0.7.1
1111
* noosphere-collections bumped from 0.6.0 to 0.6.1
1212

13+
## [0.18.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.18.1...noosphere-core-v0.18.2) (2024-03-28)
14+
15+
16+
### Features
17+
18+
* 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))
19+
1320
## [0.18.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.18.0...noosphere-core-v0.18.1) (2024-01-30)
1421

1522

rust/noosphere-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-core"
3-
version = "0.18.1"
3+
version = "0.18.2"
44
edition = "2021"
55
description = "Core data types of the Rust Noosphere implementation"
66
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]

rust/noosphere-gateway/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@
105105
* dependencies
106106
* noosphere-ns bumped from 0.9.3 to 0.9.4
107107

108+
## [0.12.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.12.0...noosphere-gateway-v0.12.1) (2024-03-28)
109+
110+
111+
### Features
112+
113+
* 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))
114+
108115
## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.11.0...noosphere-gateway-v0.12.0) (2024-01-30)
109116

110117

rust/noosphere-gateway/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-gateway"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "A geist on the network that enables user spheres to discover each other"
66
keywords = ["http", "geist", "noosphere", "p2p", "ucan"]

rust/noosphere-into/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,13 @@
176176
* dev-dependencies
177177
* noosphere-core bumped from 0.18.0 to 0.18.1
178178

179+
## [0.11.7](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.6...noosphere-into-v0.11.7) (2024-03-28)
180+
181+
182+
### Features
183+
184+
* 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))
185+
179186
## [0.11.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.1...noosphere-into-v0.11.2) (2023-10-06)
180187

181188

rust/noosphere-into/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-into"
3-
version = "0.11.6"
3+
version = "0.11.7"
44
edition = "2021"
55
description = "Transformations of Noosphere content into various target formats"
66
keywords = ["html", "ipld", "noosphere", "subtext", "transcode"]

rust/noosphere-ipfs/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@
7676
* dev-dependencies
7777
* noosphere-core bumped from 0.18.0 to 0.18.1
7878

79+
80+
7981
## [0.8.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.8.2...noosphere-ipfs-v0.8.3) (2023-10-12)
8082

8183

rust/noosphere-ipfs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-ipfs"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
edition = "2021"
55
description = "An interface for an IPFS client."
66
keywords = [

rust/noosphere-ns/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,13 @@
135135
* noosphere bumped from 0.15.3 to 0.15.4
136136
* noosphere-ipfs bumped from 0.8.3 to 0.8.4
137137

138+
## [0.12.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.12.0...noosphere-ns-v0.12.1) (2024-03-28)
139+
140+
141+
### Features
142+
143+
* 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))
144+
138145
## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.11.5...noosphere-ns-v0.12.0) (2024-01-30)
139146

140147

rust/noosphere-ns/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-ns"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "A P2P name system for Noosphere"
66
keywords = [

rust/noosphere-storage/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
4+
35
## [0.10.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.10.0...noosphere-storage-v0.10.1) (2024-01-30)
46

57

rust/noosphere-storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-storage"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
edition = "2021"
55
description = "Pluggable backing storage for the Rust Noosphere implementation"
66
keywords = ["storage", "noosphere", "sled", "ipld", "indexeddb"]

rust/noosphere-ucan/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.4.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ucan-v0.4.0...noosphere-ucan-v0.4.1) (2024-03-28)
4+
5+
6+
### Features
7+
8+
* 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))

rust/noosphere-ucan/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-ucan"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
description = "Implement UCAN-based authorization with conciseness and ease!"
66
keywords = ["ucan", "authz", "jwt", "pki"]

rust/noosphere/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@
102102
* dev-dependencies
103103
* noosphere-core bumped from 0.18.0 to 0.18.1
104104

105+
## [0.16.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.16.1...noosphere-v0.16.2) (2024-03-28)
106+
107+
108+
### Features
109+
110+
* 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))
111+
105112
## [0.16.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.15.4...noosphere-v0.16.0) (2023-11-21)
106113

107114

rust/noosphere/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere"
3-
version = "0.16.1"
3+
version = "0.16.2"
44
edition = "2021"
55
description = "A high-level package for dealing with accessing the Noosphere"
66
keywords = ["noosphere"]

0 commit comments

Comments
 (0)