Skip to content

Commit

Permalink
chore: release main (subconsciousnetwork#359)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored May 5, 2023
1 parent 2347d10 commit de1cd2a
Show file tree
Hide file tree
Showing 20 changed files with 171 additions and 56 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.7.6",
"rust/noosphere-cli": "0.10.1",
"rust/noosphere-api": "0.7.7",
"rust/noosphere-cli": "0.10.2",
"rust/noosphere-collections": "0.5.2",
"rust/noosphere-core": "0.10.1",
"rust/noosphere-into": "0.8.1",
"rust/noosphere-ns": "0.6.1",
"rust/noosphere-core": "0.10.2",
"rust/noosphere-into": "0.8.2",
"rust/noosphere-ns": "0.6.2",
"rust/noosphere-storage": "0.6.2",
"rust/noosphere": "0.10.1",
"rust/noosphere-ipfs": "0.4.1",
"rust/noosphere-gateway": "0.4.1",
"rust/noosphere-sphere": "0.5.1",
"rust/noosphere": "0.10.2",
"rust/noosphere-ipfs": "0.4.2",
"rust/noosphere-gateway": "0.4.2",
"rust/noosphere-sphere": "0.5.2",
"rust/noosphere-car": "0.1.1"
}
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.

14 changes: 14 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,20 @@
* dependencies
* noosphere-core bumped from 0.10.0 to 0.10.1

## [0.7.7](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.7.6...noosphere-api-v0.7.7) (2023-05-05)


### Features

* Enable expired yet valid records in the name system. Update to ucan 0.2.0. ([#360](https://github.com/subconsciousnetwork/noosphere/issues/360)) ([3b0663a](https://github.com/subconsciousnetwork/noosphere/commit/3b0663abc7783a6d33dd47d20caae7597ab93ed0))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.10.1 to 0.10.2

## [0.7.4](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.7.3...noosphere-api-v0.7.4) (2023-04-22)


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.7.6"
version = "0.7.7"
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 = "^1"
serde_urlencoded = "~0.7"
tracing = { workspace = true }
noosphere-core = { version = "0.10.1", path = "../noosphere-core" }
noosphere-core = { version = "0.10.2", path = "../noosphere-core" }
noosphere-storage = { version = "0.6.2", path = "../noosphere-storage" }
noosphere-car = { version = "0.1.1", path = "../noosphere-car" }
reqwest = { version = "0.11.15", default-features = false, features = ["json", "rustls-tls", "stream"] }
Expand Down
22 changes: 22 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,28 @@
* dev-dependencies
* noosphere-ns bumped from 0.6.0 to 0.6.1

## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.10.1...noosphere-cli-v0.10.2) (2023-05-05)


### Features

* Publish name record from gateway periodically. ([#334](https://github.com/subconsciousnetwork/noosphere/issues/334)) ([fc5e42f](https://github.com/subconsciousnetwork/noosphere/commit/fc5e42f2bd918fc1b3c448e55c611a99d49b00db))
* Remove `Mutex` from NNS `ApiServer` for concurrency ([#357](https://github.com/subconsciousnetwork/noosphere/issues/357)) ([2347d10](https://github.com/subconsciousnetwork/noosphere/commit/2347d10490fbb7ecc219a3a09c1de21e11f66fa2))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.4.1 to 0.4.2
* noosphere-core bumped from 0.10.1 to 0.10.2
* noosphere-sphere bumped from 0.5.1 to 0.5.2
* noosphere-api bumped from 0.7.6 to 0.7.7
* noosphere-gateway bumped from 0.4.1 to 0.4.2
* noosphere bumped from 0.10.1 to 0.10.2
* dev-dependencies
* noosphere-ns bumped from 0.6.1 to 0.6.2

## [0.10.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.9.5...noosphere-cli-v0.10.0) (2023-05-02)


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.10.1"
version = "0.10.2"
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.6.1", path = "../noosphere-ns" }
noosphere-ns = { version = "0.6.2", path = "../noosphere-ns" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tempfile = "^3"
Expand All @@ -49,13 +49,13 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.15", features = [ "serde" ] }
globset = "~0.4"

noosphere-ipfs = { version = "0.4.1", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.10.1", path = "../noosphere-core" }
noosphere-sphere = { version = "0.5.1", path = "../noosphere-sphere" }
noosphere-ipfs = { version = "0.4.2", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.10.2", path = "../noosphere-core" }
noosphere-sphere = { version = "0.5.2", path = "../noosphere-sphere" }
noosphere-storage = { version = "0.6.2", path = "../noosphere-storage" }
noosphere-api = { version = "0.7.6", path = "../noosphere-api" }
noosphere-gateway = { version = "0.4.1", path = "../noosphere-gateway" }
noosphere = { version = "0.10.1", path = "../noosphere" }
noosphere-api = { version = "0.7.7", path = "../noosphere-api" }
noosphere-gateway = { version = "0.4.2", path = "../noosphere-gateway" }
noosphere = { version = "0.10.2", path = "../noosphere" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-collections bumped from 0.3.1 to 0.3.2

## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.10.1...noosphere-core-v0.10.2) (2023-05-05)


### Features

* Enable expired yet valid records in the name system. Update to ucan 0.2.0. ([#360](https://github.com/subconsciousnetwork/noosphere/issues/360)) ([3b0663a](https://github.com/subconsciousnetwork/noosphere/commit/3b0663abc7783a6d33dd47d20caae7597ab93ed0))
* Publish name record from gateway periodically. ([#334](https://github.com/subconsciousnetwork/noosphere/issues/334)) ([fc5e42f](https://github.com/subconsciousnetwork/noosphere/commit/fc5e42f2bd918fc1b3c448e55c611a99d49b00db))
* Remove `Mutex` from NNS `ApiServer` for concurrency ([#357](https://github.com/subconsciousnetwork/noosphere/issues/357)) ([2347d10](https://github.com/subconsciousnetwork/noosphere/commit/2347d10490fbb7ecc219a3a09c1de21e11f66fa2))

## [0.10.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.10.0...noosphere-core-v0.10.1) (2023-05-02)


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.10.1"
version = "0.10.2"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down
21 changes: 21 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,27 @@
* noosphere-api bumped from 0.7.5 to 0.7.6
* noosphere bumped from 0.10.0 to 0.10.1

## [0.4.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.4.1...noosphere-gateway-v0.4.2) (2023-05-05)


### Features

* Enable expired yet valid records in the name system. Update to ucan 0.2.0. ([#360](https://github.com/subconsciousnetwork/noosphere/issues/360)) ([3b0663a](https://github.com/subconsciousnetwork/noosphere/commit/3b0663abc7783a6d33dd47d20caae7597ab93ed0))
* Publish name record from gateway periodically. ([#334](https://github.com/subconsciousnetwork/noosphere/issues/334)) ([fc5e42f](https://github.com/subconsciousnetwork/noosphere/commit/fc5e42f2bd918fc1b3c448e55c611a99d49b00db))
* Remove `Mutex` from NNS `ApiServer` for concurrency ([#357](https://github.com/subconsciousnetwork/noosphere/issues/357)) ([2347d10](https://github.com/subconsciousnetwork/noosphere/commit/2347d10490fbb7ecc219a3a09c1de21e11f66fa2))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.4.1 to 0.4.2
* noosphere-core bumped from 0.10.1 to 0.10.2
* noosphere-ns bumped from 0.6.1 to 0.6.2
* noosphere-sphere bumped from 0.5.1 to 0.5.2
* noosphere-api bumped from 0.7.6 to 0.7.7
* noosphere bumped from 0.10.1 to 0.10.2

## [0.4.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.3.5...noosphere-gateway-v0.4.0) (2023-05-02)


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.4.1"
version = "0.4.2"
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 @@ -49,13 +49,13 @@ toml_edit = { version = "~0.15", features = [ "serde" ] }
globset = "~0.4"

noosphere-car = { version = "0.1.1", path = "../noosphere-car" }
noosphere-ipfs = { version = "0.4.1", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.10.1", path = "../noosphere-core" }
noosphere-ns = { version = "0.6.1", path = "../noosphere-ns" }
noosphere-ipfs = { version = "0.4.2", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.10.2", path = "../noosphere-core" }
noosphere-ns = { version = "0.6.2", path = "../noosphere-ns" }
noosphere-storage = { version = "0.6.2", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.5.1", path = "../noosphere-sphere" }
noosphere-api = { version = "0.7.6", path = "../noosphere-api" }
noosphere = { version = "0.10.1", path = "../noosphere" }
noosphere-sphere = { version = "0.5.2", path = "../noosphere-sphere" }
noosphere-api = { version = "0.7.7", path = "../noosphere-api" }
noosphere = { version = "0.10.2", path = "../noosphere" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@
* dev-dependencies
* noosphere-sphere bumped from 0.5.0 to 0.5.1

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.10.1 to 0.10.2
* noosphere-sphere bumped from 0.5.1 to 0.5.2
* dev-dependencies
* noosphere-sphere bumped from 0.5.1 to 0.5.2

## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.7.4...noosphere-into-v0.8.0) (2023-05-02)


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.8.1"
version = "0.8.2"
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.10.1", path = "../noosphere-core" }
noosphere-core = { version = "0.10.2", path = "../noosphere-core" }
noosphere-storage = { version = "0.6.2", path = "../noosphere-storage" }
noosphere-sphere = { version = "0.5.1", path = "../noosphere-sphere" }
noosphere-sphere = { version = "0.5.2", 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.5.1", path = "../noosphere-sphere", features = ["helpers"] }
noosphere-sphere = { version = "0.5.2", path = "../noosphere-sphere", features = ["helpers"] }
wasm-bindgen-test = "~0.3"

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

* The following workspace dependencies were updated
* dev-dependencies
* noosphere-core bumped from 0.10.1 to 0.10.2

## [0.4.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.3.4...noosphere-ipfs-v0.4.0) (2023-05-02)


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.4.1"
version = "0.4.2"
edition = "2021"
description = "An interface for an IPFS client."
keywords = [
Expand Down Expand Up @@ -54,4 +54,4 @@ ipfs-api-prelude = "~0.5"
rand = "~0.8"
libipld-cbor = { workspace = true }
noosphere-storage = { version = "0.6.2", path = "../noosphere-storage" }
noosphere-core = { version = "0.10.1", path = "../noosphere-core" }
noosphere-core = { version = "0.10.2", path = "../noosphere-core" }
17 changes: 17 additions & 0 deletions rust/noosphere-ns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,23 @@
* noosphere bumped from 0.10.0 to 0.10.1
* noosphere-ipfs bumped from 0.4.0 to 0.4.1

## [0.6.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.6.1...noosphere-ns-v0.6.2) (2023-05-05)


### Features

* Enable expired yet valid records in the name system. Update to ucan 0.2.0. ([#360](https://github.com/subconsciousnetwork/noosphere/issues/360)) ([3b0663a](https://github.com/subconsciousnetwork/noosphere/commit/3b0663abc7783a6d33dd47d20caae7597ab93ed0))
* Remove `Mutex` from NNS `ApiServer` for concurrency ([#357](https://github.com/subconsciousnetwork/noosphere/issues/357)) ([2347d10](https://github.com/subconsciousnetwork/noosphere/commit/2347d10490fbb7ecc219a3a09c1de21e11f66fa2))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.10.1 to 0.10.2
* noosphere bumped from 0.10.1 to 0.10.2
* noosphere-ipfs bumped from 0.4.1 to 0.4.2

## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.5.7...noosphere-ns-v0.6.0) (2023-05-02)


Expand Down
Loading

0 comments on commit de1cd2a

Please sign in to comment.