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 (#700)
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 Nov 1, 2023
1 parent 788c4dd commit 8688eaa
Show file tree
Hide file tree
Showing 20 changed files with 163 additions and 55 deletions.
18 changes: 9 additions & 9 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"rust/noosphere-cli": "0.15.3",
"rust/noosphere-collections": "0.6.6",
"rust/noosphere-core": "0.17.2",
"rust/noosphere-into": "0.11.3",
"rust/noosphere-ns": "0.11.3",
"rust/noosphere-storage": "0.9.2",
"rust/noosphere": "0.15.3",
"rust/noosphere-ipfs": "0.8.3",
"rust/noosphere-gateway": "0.10.2",
"rust/noosphere-cli": "0.15.4",
"rust/noosphere-collections": "0.6.7",
"rust/noosphere-core": "0.17.3",
"rust/noosphere-into": "0.11.4",
"rust/noosphere-ns": "0.11.4",
"rust/noosphere-storage": "0.9.3",
"rust/noosphere": "0.15.4",
"rust/noosphere-ipfs": "0.8.4",
"rust/noosphere-gateway": "0.10.3",
"rust/noosphere-common": "0.1.2"
}
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.

9 changes: 9 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,15 @@
* noosphere-ns bumped from 0.11.0 to 0.11.1
* noosphere bumped from 0.15.0 to 0.15.1

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.8.3 to 0.8.4
* noosphere-core bumped from 0.17.2 to 0.17.3
* noosphere-storage bumped from 0.9.2 to 0.9.3
* noosphere-gateway bumped from 0.10.2 to 0.10.3
* noosphere-ns bumped from 0.11.3 to 0.11.4
* noosphere bumped from 0.15.3 to 0.15.4

## [0.15.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.15.2...noosphere-cli-v0.15.3) (2023-10-12)


Expand Down
14 changes: 7 additions & 7 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.15.3"
version = "0.15.4"
edition = "2021"
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]
Expand Down Expand Up @@ -46,12 +46,12 @@ mime_guess = "^2"
witty-phrase-generator = "~0.2"
globset = "~0.4"

noosphere-ipfs = { version = "0.8.3", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
noosphere-gateway = { version = "0.10.2", path = "../noosphere-gateway" }
noosphere-ns = { version = "0.11.3", path = "../noosphere-ns", optional = true }
noosphere = { version = "0.15.3", path = "../noosphere" }
noosphere-ipfs = { version = "0.8.4", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.17.3", path = "../noosphere-core" }
noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" }
noosphere-gateway = { version = "0.10.3", path = "../noosphere-gateway" }
noosphere-ns = { version = "0.11.4", path = "../noosphere-ns", optional = true }
noosphere = { version = "0.15.4", 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 @@ -36,6 +36,10 @@
* dependencies
* noosphere-storage bumped from 0.9.1 to 0.9.2

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.9.2 to 0.9.3

## [0.6.5](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.6.4...noosphere-collections-v0.6.5) (2023-10-06)


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.6"
version = "0.6.7"
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 All @@ -27,7 +27,7 @@ byteorder = "^1.5"
async-recursion = { workspace = true }
libipld-core = { workspace = true }
libipld-cbor = { workspace = true }
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" }
tokio = { workspace = true, features = ["sync", "io-util"] }

tokio-stream = { workspace = true }
Expand Down
20 changes: 20 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@
* noosphere-storage bumped from 0.7.0 to 0.7.1
* noosphere-collections bumped from 0.6.0 to 0.6.1

## [0.17.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.17.2...noosphere-core-v0.17.3) (2023-11-01)


### Features

* Periodic syndication checks to IPFS Kubo ([#685](https://github.com/subconsciousnetwork/noosphere/issues/685)) ([b5640b2](https://github.com/subconsciousnetwork/noosphere/commit/b5640b2e23ad7bfc522a03d0b1731e372425afa8))


### Bug Fixes

* Recovery only uses latest version of sphere ([#703](https://github.com/subconsciousnetwork/noosphere/issues/703)) ([500bd69](https://github.com/subconsciousnetwork/noosphere/commit/500bd69509b21e7f8c13b178f1de05168b2386d3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.9.2 to 0.9.3
* noosphere-collections bumped from 0.6.6 to 0.6.7

## [0.17.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.17.1...noosphere-core-v0.17.2) (2023-10-12)


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.17.2"
version = "0.17.3"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -59,8 +59,8 @@ strum_macros = { workspace = true }
tokio-util = { workspace = true, features = ["io"] }

noosphere-common = { version = "0.1.2", path = "../noosphere-common" }
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.6", path = "../noosphere-collections" }
noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.7", path = "../noosphere-collections" }

ucan = { workspace = true }
ucan-key-support = { workspace = true }
Expand Down
24 changes: 24 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,30 @@
* dependencies
* noosphere-ns bumped from 0.9.3 to 0.9.4

## [0.10.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.10.2...noosphere-gateway-v0.10.3) (2023-11-01)


### Features

* Periodic syndication checks to IPFS Kubo ([#685](https://github.com/subconsciousnetwork/noosphere/issues/685)) ([b5640b2](https://github.com/subconsciousnetwork/noosphere/commit/b5640b2e23ad7bfc522a03d0b1731e372425afa8))


### Bug Fixes

* Recovery only uses latest version of sphere ([#703](https://github.com/subconsciousnetwork/noosphere/issues/703)) ([500bd69](https://github.com/subconsciousnetwork/noosphere/commit/500bd69509b21e7f8c13b178f1de05168b2386d3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.8.3 to 0.8.4
* noosphere-core bumped from 0.17.2 to 0.17.3
* noosphere-ns bumped from 0.11.3 to 0.11.4
* noosphere-storage bumped from 0.9.2 to 0.9.3
* dev-dependencies
* noosphere-core bumped from 0.17.2 to 0.17.3

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


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.10.2"
version = "0.10.3"
edition = "2021"
description = "A geist on the network that enables user spheres to discover each other"
keywords = ["http", "geist", "noosphere", "p2p", "ucan"]
Expand All @@ -24,7 +24,7 @@ tracing = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
reqwest = { workspace = true }
noosphere-common = { version = "0.1.2", path = "../noosphere-common", features = ["helpers"] }
noosphere-core = { version = "0.17.2", path = "../noosphere-core", features = ["helpers"] }
noosphere-core = { version = "0.17.3", path = "../noosphere-core", features = ["helpers"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
anyhow = { workspace = true }
Expand All @@ -46,10 +46,10 @@ async-stream = { workspace = true }
url = { workspace = true, features = ["serde"] }
mime_guess = "^2"

noosphere-ipfs = { version = "0.8.3", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
noosphere-ns = { version = "0.11.3", path = "../noosphere-ns" }
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
noosphere-ipfs = { version = "0.8.4", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.17.3", path = "../noosphere-core" }
noosphere-ns = { version = "0.11.4", path = "../noosphere-ns" }
noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" }
noosphere-common = { version = "0.1.2", path = "../noosphere-common" }
ucan = { workspace = true }
ucan-key-support = { 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 @@ -155,6 +155,13 @@
* dev-dependencies
* noosphere-core bumped from 0.17.1 to 0.17.2

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.17.2 to 0.17.3
* noosphere-storage bumped from 0.9.2 to 0.9.3
* dev-dependencies
* noosphere-core bumped from 0.17.2 to 0.17.3

## [0.11.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.1...noosphere-into-v0.11.2) (2023-10-06)


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.11.3"
version = "0.11.4"
edition = "2021"
description = "Transformations of Noosphere content into various target formats"
keywords = ["html", "ipld", "noosphere", "subtext", "transcode"]
Expand All @@ -17,8 +17,8 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

[dependencies]
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
noosphere-core = { version = "0.17.3", path = "../noosphere-core" }
noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" }
subtext = { version = "0.3.2", features = ["stream"] }
async-trait = "~0.1"
url = { workspace = true }
Expand All @@ -43,7 +43,7 @@ ucan = { workspace = true }
ucan-key-support = { workspace = true }

[dev-dependencies]
noosphere-core = { version = "0.17.2", path = "../noosphere-core", features = ["helpers"] }
noosphere-core = { version = "0.17.3", path = "../noosphere-core", features = ["helpers"] }
wasm-bindgen-test = { workspace = true }

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

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.9.2 to 0.9.3
* dev-dependencies
* noosphere-core bumped from 0.17.2 to 0.17.3

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


Expand Down
6 changes: 3 additions & 3 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.8.3"
version = "0.8.4"
edition = "2021"
description = "An interface for an IPFS client."
keywords = [
Expand Down Expand Up @@ -39,7 +39,7 @@ tokio = { workspace = true, features = ["io-util"] }
tokio-stream = { workspace = true }
tracing = { workspace = true }
url = { workspace = true, features = [ "serde" ] }
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" }
noosphere-common = { version = "0.1.2", path = "../noosphere-common" }
ucan = { workspace = true, optional = true }

Expand All @@ -54,4 +54,4 @@ iroh-car = { workspace = true }
libipld-cbor = { workspace = true }
libipld-json = { workspace = true }
multihash = { workspace = true }
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
noosphere-core = { version = "0.17.3", path = "../noosphere-core" }
7 changes: 7 additions & 0 deletions rust/noosphere-ns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@
* noosphere bumped from 0.15.2 to 0.15.3
* noosphere-ipfs bumped from 0.8.2 to 0.8.3

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.9.2 to 0.9.3
* noosphere-core bumped from 0.17.2 to 0.17.3
* noosphere bumped from 0.15.3 to 0.15.4
* noosphere-ipfs bumped from 0.8.3 to 0.8.4

## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.10.2...noosphere-ns-v0.11.0) (2023-09-19)


Expand Down
Loading

0 comments on commit 8688eaa

Please sign in to comment.