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

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 28, 2023
1 parent 8b806c5 commit 7ed3990
Show file tree
Hide file tree
Showing 20 changed files with 230 additions and 54 deletions.
18 changes: 9 additions & 9 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"rust/noosphere-api": "0.8.3",
"rust/noosphere-cli": "0.11.3",
"rust/noosphere-api": "0.9.0",
"rust/noosphere-cli": "0.12.0",
"rust/noosphere-collections": "0.6.0",
"rust/noosphere-core": "0.12.3",
"rust/noosphere-into": "0.9.3",
"rust/noosphere-ns": "0.8.3",
"rust/noosphere-core": "0.13.0",
"rust/noosphere-into": "0.10.0",
"rust/noosphere-ns": "0.9.0",
"rust/noosphere-storage": "0.7.0",
"rust/noosphere": "0.11.3",
"rust/noosphere-ipfs": "0.5.3",
"rust/noosphere-gateway": "0.5.3",
"rust/noosphere-sphere": "0.6.3",
"rust/noosphere": "0.12.0",
"rust/noosphere-ipfs": "0.6.0",
"rust/noosphere-gateway": "0.6.0",
"rust/noosphere-sphere": "0.7.0",
"rust/noosphere-car": "0.2.0"
}
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,24 @@
* dependencies
* noosphere-core bumped from 0.12.2 to 0.12.3

## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.8.3...noosphere-api-v0.9.0) (2023-06-28)


### ⚠ BREAKING CHANGES

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449))

### Features

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.12.3 to 0.13.0

## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.7.9...noosphere-api-v0.8.0) (2023-06-08)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-api"
version = "0.8.3"
version = "0.9.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"]
Expand All @@ -26,7 +26,7 @@ url = "^2"
serde = { workspace = true }
serde_urlencoded = "~0.7"
tracing = { workspace = true }
noosphere-core = { version = "0.12.3", path = "../noosphere-core" }
noosphere-core = { version = "0.13.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-car = { version = "0.2.0", path = "../noosphere-car" }
reqwest = { version = "0.11.15", default-features = false, features = ["json", "rustls-tls", "stream"] }
Expand Down
25 changes: 25 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,31 @@
* dev-dependencies
* noosphere-ns bumped from 0.8.2 to 0.8.3

## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.11.3...noosphere-cli-v0.12.0) (2023-06-28)


### ⚠ BREAKING CHANGES

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449))

### Features

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.5.3 to 0.6.0
* noosphere-core bumped from 0.12.3 to 0.13.0
* noosphere-sphere bumped from 0.6.3 to 0.7.0
* noosphere-api bumped from 0.8.3 to 0.9.0
* noosphere-gateway bumped from 0.5.3 to 0.6.0
* noosphere bumped from 0.11.3 to 0.12.0
* dev-dependencies
* noosphere-ns bumped from 0.8.3 to 0.9.0

## [0.11.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.11.0...noosphere-cli-v0.11.1) (2023-06-09)


Expand Down
16 changes: 8 additions & 8 deletions rust/noosphere-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-cli"
version = "0.11.3"
version = "0.12.0"
edition = "2021"
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]
Expand All @@ -23,7 +23,7 @@ test_kubo = []

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls", "stream"] }
noosphere-ns = { version = "0.8.3", path = "../noosphere-ns" }
noosphere-ns = { version = "0.9.0", path = "../noosphere-ns" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tempfile = { workspace = true }
Expand All @@ -46,13 +46,13 @@ mime_guess = "^2"
witty-phrase-generator = "~0.2"
globset = "~0.4"

noosphere-ipfs = { version = "0.5.3", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.12.3", path = "../noosphere-core" }
noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" }
noosphere-ipfs = { version = "0.6.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.13.0", path = "../noosphere-core" }
noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.8.3", path = "../noosphere-api" }
noosphere-gateway = { version = "0.5.3", path = "../noosphere-gateway" }
noosphere = { version = "0.11.3", path = "../noosphere" }
noosphere-api = { version = "0.9.0", path = "../noosphere-api" }
noosphere-gateway = { version = "0.6.0", path = "../noosphere-gateway" }
noosphere = { version = "0.12.0", path = "../noosphere" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
11 changes: 11 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-collections bumped from 0.3.1 to 0.3.2

## [0.13.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.12.3...noosphere-core-v0.13.0) (2023-06-28)


### ⚠ BREAKING CHANGES

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449))

### Features

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a))

## [0.12.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.12.2...noosphere-core-v0.12.3) (2023-06-23)


Expand Down
2 changes: 1 addition & 1 deletion rust/noosphere-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-core"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down
22 changes: 22 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,28 @@
* noosphere-sphere bumped from 0.6.2 to 0.6.3
* noosphere-api bumped from 0.8.2 to 0.8.3

## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.5.3...noosphere-gateway-v0.6.0) (2023-06-28)


### ⚠ BREAKING CHANGES

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449))

### Features

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.5.3 to 0.6.0
* noosphere-core bumped from 0.12.3 to 0.13.0
* noosphere-ns bumped from 0.8.3 to 0.9.0
* noosphere-sphere bumped from 0.6.3 to 0.7.0
* noosphere-api bumped from 0.8.3 to 0.9.0

## [0.5.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.5.1...noosphere-gateway-v0.5.2) (2023-06-22)


Expand Down
12 changes: 6 additions & 6 deletions rust/noosphere-gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-gateway"
version = "0.5.3"
version = "0.6.0"
edition = "2021"
description = "A geist on the network that enables user spheres to discover each other"
keywords = ["http", "geist", "noosphere", "p2p", "ucan"]
Expand Down Expand Up @@ -39,12 +39,12 @@ url = { version = "^2", features = [ "serde" ] }
mime_guess = "^2"

noosphere-car = { version = "0.2.0", path = "../noosphere-car" }
noosphere-ipfs = { version = "0.5.3", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.12.3", path = "../noosphere-core" }
noosphere-ns = { version = "0.8.3", path = "../noosphere-ns" }
noosphere-ipfs = { version = "0.6.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.13.0", path = "../noosphere-core" }
noosphere-ns = { version = "0.9.0", path = "../noosphere-ns" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" }
noosphere-api = { version = "0.8.3", path = "../noosphere-api" }
noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" }
noosphere-api = { version = "0.9.0", path = "../noosphere-api" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
21 changes: 21 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,27 @@
* dev-dependencies
* noosphere-sphere bumped from 0.6.2 to 0.6.3

## [0.10.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.9.3...noosphere-into-v0.10.0) (2023-06-28)


### ⚠ BREAKING CHANGES

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449))

### Features

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.12.3 to 0.13.0
* noosphere-sphere bumped from 0.6.3 to 0.7.0
* dev-dependencies
* noosphere-sphere bumped from 0.6.3 to 0.7.0

## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.8.9...noosphere-into-v0.9.0) (2023-06-08)


Expand Down
8 changes: 4 additions & 4 deletions rust/noosphere-into/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-into"
version = "0.9.3"
version = "0.10.0"
edition = "2021"
description = "Transformations of Noosphere content into various target formats"
keywords = ["html", "ipld", "noosphere", "subtext", "transcode"]
Expand All @@ -17,9 +17,9 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

[dependencies]
noosphere-core = { version = "0.12.3", path = "../noosphere-core" }
noosphere-core = { version = "0.13.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" }
noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" }
subtext = { version = "0.3.2", features = ["stream"] }
async-trait = "~0.1"
url = "2"
Expand All @@ -45,7 +45,7 @@ ucan = { workspace = true }
ucan-key-support = { workspace = true }

[dev-dependencies]
noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere", features = ["helpers"] }
noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere", features = ["helpers"] }
wasm-bindgen-test = { workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
Expand Down
18 changes: 18 additions & 0 deletions rust/noosphere-ipfs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,24 @@
* dev-dependencies
* noosphere-core bumped from 0.12.2 to 0.12.3

## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.5.3...noosphere-ipfs-v0.6.0) (2023-06-28)


### ⚠ BREAKING CHANGES

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449))

### Features

* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a))


### Dependencies

* The following workspace dependencies were updated
* dev-dependencies
* noosphere-core bumped from 0.12.3 to 0.13.0

## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.4.4...noosphere-ipfs-v0.5.0) (2023-06-08)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-ipfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-ipfs"
version = "0.5.3"
version = "0.6.0"
edition = "2021"
description = "An interface for an IPFS client."
keywords = [
Expand Down Expand Up @@ -54,4 +54,4 @@ rand = "~0.8"
libipld-cbor = { workspace = true }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-car = { version = "0.2.0", path = "../noosphere-car" }
noosphere-core = { version = "0.12.3", path = "../noosphere-core" }
noosphere-core = { version = "0.13.0", path = "../noosphere-core" }
Loading

0 comments on commit 7ed3990

Please sign in to comment.