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] authored Jul 1, 2023
1 parent 5fe8470 commit 69df4d0
Show file tree
Hide file tree
Showing 24 changed files with 234 additions and 72 deletions.
22 changes: 11 additions & 11 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"rust/noosphere-api": "0.9.0",
"rust/noosphere-cli": "0.12.0",
"rust/noosphere-collections": "0.6.0",
"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.12.0",
"rust/noosphere-ipfs": "0.6.0",
"rust/noosphere-gateway": "0.6.0",
"rust/noosphere-sphere": "0.7.0",
"rust/noosphere-api": "0.9.1",
"rust/noosphere-cli": "0.12.1",
"rust/noosphere-collections": "0.6.1",
"rust/noosphere-core": "0.13.1",
"rust/noosphere-into": "0.10.1",
"rust/noosphere-ns": "0.9.1",
"rust/noosphere-storage": "0.8.0",
"rust/noosphere": "0.13.0",
"rust/noosphere-ipfs": "0.6.1",
"rust/noosphere-gateway": "0.6.1",
"rust/noosphere-sphere": "0.7.1",
"rust/noosphere-car": "0.2.0"
}
22 changes: 11 additions & 11 deletions Cargo.lock

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

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

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.13.0 to 0.13.1
* noosphere-storage bumped from 0.7.0 to 0.8.0

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


Expand Down
6 changes: 3 additions & 3 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.9.0"
version = "0.9.1"
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,8 +26,8 @@ url = "^2"
serde = { workspace = true }
serde_urlencoded = "~0.7"
tracing = { workspace = true }
noosphere-core = { version = "0.13.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-core = { version = "0.13.1", path = "../noosphere-core" }
noosphere-storage = { version = "0.8.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"] }
tokio-stream = "~0.1"
Expand Down
12 changes: 12 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,18 @@
* dev-dependencies
* noosphere-ns bumped from 0.8.2 to 0.8.3

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.6.0 to 0.6.1
* noosphere-core bumped from 0.13.0 to 0.13.1
* noosphere-sphere bumped from 0.7.0 to 0.7.1
* noosphere-storage bumped from 0.7.0 to 0.8.0
* noosphere-api bumped from 0.9.0 to 0.9.1
* noosphere-gateway bumped from 0.6.0 to 0.6.1
* noosphere bumped from 0.12.0 to 0.13.0
* dev-dependencies
* noosphere-ns bumped from 0.9.0 to 0.9.1

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


Expand Down
18 changes: 9 additions & 9 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.12.0"
version = "0.12.1"
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.9.0", path = "../noosphere-ns" }
noosphere-ns = { version = "0.9.1", 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.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.9.0", path = "../noosphere-api" }
noosphere-gateway = { version = "0.6.0", path = "../noosphere-gateway" }
noosphere = { version = "0.12.0", path = "../noosphere" }
noosphere-ipfs = { version = "0.6.1", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.13.1", path = "../noosphere-core" }
noosphere-sphere = { version = "0.7.1", path = "../noosphere-sphere" }
noosphere-storage = { version = "0.8.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.9.1", path = "../noosphere-api" }
noosphere-gateway = { version = "0.6.1", path = "../noosphere-gateway" }
noosphere = { version = "0.13.0", path = "../noosphere" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions rust/noosphere-collections/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
* dependencies
* noosphere-storage bumped from 0.6.2 to 0.6.3

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.7.0 to 0.8.0

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


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-collections/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-collections"
version = "0.6.0"
version = "0.6.1"
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"]
Expand Down Expand Up @@ -31,7 +31,7 @@ async-once-cell = "0.3"
async-recursion = "^1"
libipld-core = { workspace = true }
libipld-cbor = { workspace = true }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-storage = { version = "0.8.0", path = "../noosphere-storage" }

tokio = { version = "^1", features = ["sync", "io-util"] }
tokio-stream = "~0.1"
Expand Down
5 changes: 5 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-collections bumped from 0.3.1 to 0.3.2

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.7.0 to 0.8.0
* noosphere-collections bumped from 0.6.0 to 0.6.1

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


Expand Down
6 changes: 3 additions & 3 deletions 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.13.0"
version = "0.13.1"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -49,8 +49,8 @@ libipld-cbor = { workspace = true }
strum = { workspace = true }
strum_macros = { workspace = true }

noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.0", path = "../noosphere-collections" }
noosphere-storage = { version = "0.8.0", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.1", path = "../noosphere-collections" }

ucan = { workspace = true }
ucan-key-support = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,15 @@
* noosphere-sphere bumped from 0.6.2 to 0.6.3
* noosphere-api bumped from 0.8.2 to 0.8.3

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.6.0 to 0.6.1
* noosphere-core bumped from 0.13.0 to 0.13.1
* noosphere-ns bumped from 0.9.0 to 0.9.1
* noosphere-storage bumped from 0.7.0 to 0.8.0
* noosphere-sphere bumped from 0.7.0 to 0.7.1
* noosphere-api bumped from 0.9.0 to 0.9.1

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


Expand Down
14 changes: 7 additions & 7 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.6.0"
version = "0.6.1"
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.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.7.0", path = "../noosphere-sphere" }
noosphere-api = { version = "0.9.0", path = "../noosphere-api" }
noosphere-ipfs = { version = "0.6.1", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.13.1", path = "../noosphere-core" }
noosphere-ns = { version = "0.9.1", path = "../noosphere-ns" }
noosphere-storage = { version = "0.8.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.7.1", path = "../noosphere-sphere" }
noosphere-api = { version = "0.9.1", path = "../noosphere-api" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
8 changes: 8 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,14 @@
* dev-dependencies
* noosphere-sphere bumped from 0.6.2 to 0.6.3

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.13.0 to 0.13.1
* noosphere-storage bumped from 0.7.0 to 0.8.0
* noosphere-sphere bumped from 0.7.0 to 0.7.1
* dev-dependencies
* noosphere-sphere bumped from 0.7.0 to 0.7.1

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


Expand Down
10 changes: 5 additions & 5 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.10.0"
version = "0.10.1"
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.13.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" }
noosphere-core = { version = "0.13.1", path = "../noosphere-core" }
noosphere-storage = { version = "0.8.0", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.7.1", 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.7.0", path = "../noosphere-sphere", features = ["helpers"] }
noosphere-sphere = { version = "0.7.1", path = "../noosphere-sphere", features = ["helpers"] }
wasm-bindgen-test = { workspace = true }

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

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.7.0 to 0.8.0
* dev-dependencies
* noosphere-storage bumped from 0.7.0 to 0.8.0
* noosphere-core bumped from 0.13.0 to 0.13.1

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


Expand Down
Loading

0 comments on commit 69df4d0

Please sign in to comment.