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 May 23, 2023
1 parent 9ee4798 commit 33572b3
Show file tree
Hide file tree
Showing 26 changed files with 327 additions and 82 deletions.
24 changes: 12 additions & 12 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"rust/noosphere-api": "0.7.9",
"rust/noosphere-cli": "0.10.11",
"rust/noosphere-collections": "0.5.3",
"rust/noosphere-core": "0.11.0",
"rust/noosphere-into": "0.8.9",
"rust/noosphere-ns": "0.7.2",
"rust/noosphere-storage": "0.6.3",
"rust/noosphere": "0.10.11",
"rust/noosphere-ipfs": "0.4.4",
"rust/noosphere-gateway": "0.4.11",
"rust/noosphere-sphere": "0.5.8",
"rust/noosphere-car": "0.1.2"
"rust/noosphere-api": "0.8.0",
"rust/noosphere-cli": "0.11.0",
"rust/noosphere-collections": "0.6.0",
"rust/noosphere-core": "0.11.1",
"rust/noosphere-into": "0.9.0",
"rust/noosphere-ns": "0.8.0",
"rust/noosphere-storage": "0.7.0",
"rust/noosphere": "0.11.0",
"rust/noosphere-ipfs": "0.5.0",
"rust/noosphere-gateway": "0.5.0",
"rust/noosphere-sphere": "0.6.0",
"rust/noosphere-car": "0.2.0"
}
24 changes: 12 additions & 12 deletions Cargo.lock

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

21 changes: 21 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,27 @@
* dependencies
* noosphere-car bumped from 0.1.1 to 0.1.2

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


### ⚠ BREAKING CHANGES

* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400))

### Features

* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca))
* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.11.0 to 0.11.1
* noosphere-storage bumped from 0.6.3 to 0.7.0
* noosphere-car bumped from 0.1.2 to 0.2.0

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


Expand Down
8 changes: 4 additions & 4 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.9"
version = "0.8.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,9 +26,9 @@ url = "^2"
serde = { workspace = true }
serde_urlencoded = "~0.7"
tracing = { workspace = true }
noosphere-core = { version = "0.11.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" }
noosphere-car = { version = "0.1.2", path = "../noosphere-car" }
noosphere-core = { version = "0.11.1", 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"] }
tokio-stream = "~0.1"
tokio-util = "0.7.7"
Expand Down
11 changes: 11 additions & 0 deletions rust/noosphere-car/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-car-v0.1.2...noosphere-car-v0.2.0) (2023-05-23)


### ⚠ BREAKING CHANGES

* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400))

### Features

* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386)

## [0.1.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-car-v0.1.1...noosphere-car-v0.1.2) (2023-05-09)


Expand Down
2 changes: 1 addition & 1 deletion rust/noosphere-car/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-car"
version = "0.1.2"
version = "0.2.0"
edition = "2021"
description = "Streaming CAR format support for Noosphere"
keywords = ["car", "sync", "noosphere", "ipfs", "cid"]
Expand Down
28 changes: 28 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,34 @@
* dev-dependencies
* noosphere-ns bumped from 0.7.1 to 0.7.2

## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.10.11...noosphere-cli-v0.11.0) (2023-05-23)


### ⚠ BREAKING CHANGES

* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400))

### Features

* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca))
* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-car bumped from 0.1.2 to 0.2.0
* noosphere-ipfs bumped from 0.4.4 to 0.5.0
* noosphere-core bumped from 0.11.0 to 0.11.1
* noosphere-sphere bumped from 0.5.8 to 0.6.0
* noosphere-storage bumped from 0.6.3 to 0.7.0
* noosphere-api bumped from 0.7.9 to 0.8.0
* noosphere-gateway bumped from 0.4.11 to 0.5.0
* noosphere bumped from 0.10.11 to 0.11.0
* dev-dependencies
* noosphere-ns bumped from 0.7.2 to 0.8.0

## [0.10.8](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.10.7...noosphere-cli-v0.10.8) (2023-05-11)


Expand Down
20 changes: 10 additions & 10 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.11"
version = "0.11.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.7.2", path = "../noosphere-ns" }
noosphere-ns = { version = "0.8.0", path = "../noosphere-ns" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tempfile = "^3"
Expand All @@ -37,7 +37,7 @@ tower-http = { version = "~0.3", features = ["cors", "trace"] }
async-trait = "~0.1"
tracing = { workspace = true }
multipart = "~0.18"
noosphere-car = { version = "0.1.2", path = "../noosphere-car" }
noosphere-car = { version = "0.2.0", path = "../noosphere-car" }

url = { version = "^2", features = [ "serde" ] }
whoami = "^1"
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.4", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.11.0", path = "../noosphere-core" }
noosphere-sphere = { version = "0.5.8", path = "../noosphere-sphere" }
noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" }
noosphere-api = { version = "0.7.9", path = "../noosphere-api" }
noosphere-gateway = { version = "0.4.11", path = "../noosphere-gateway" }
noosphere = { version = "0.10.11", path = "../noosphere" }
noosphere-ipfs = { version = "0.5.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.11.1", path = "../noosphere-core" }
noosphere-sphere = { version = "0.6.0", path = "../noosphere-sphere" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-api = { version = "0.8.0", path = "../noosphere-api" }
noosphere-gateway = { version = "0.5.0", path = "../noosphere-gateway" }
noosphere = { version = "0.11.0", path = "../noosphere" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
19 changes: 19 additions & 0 deletions rust/noosphere-collections/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,25 @@
* dependencies
* noosphere-storage bumped from 0.6.2 to 0.6.3

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


### ⚠ BREAKING CHANGES

* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400))

### Features

* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca))
* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386)


### Dependencies

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

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


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.5.3"
version = "0.6.0"
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.6.3", path = "../noosphere-storage" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }

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

## [0.11.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.11.0...noosphere-core-v0.11.1) (2023-05-23)


### Features

* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca))


### Dependencies

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

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


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.11.0"
version = "0.11.1"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -47,8 +47,8 @@ libipld-cbor = { workspace = true }
strum = { workspace = true }
strum_macros = { workspace = true }

noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" }
noosphere-collections = { version = "0.5.3", path = "../noosphere-collections" }
noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.0", path = "../noosphere-collections" }

ucan = { workspace = true }
ucan-key-support = { workspace = true }
Expand Down
Loading

0 comments on commit 33572b3

Please sign in to comment.