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

chore: release main #405

Merged
merged 1 commit into from
Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.12.0",
"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.

27 changes: 27 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,33 @@
* 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-06-08)


### ⚠ BREAKING CHANGES

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409))
* 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)


### Bug Fixes

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.11.0 to 0.12.0
* 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.12.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"] }
tokio-stream = "~0.1"
tokio-util = "0.7.7"
Expand Down
17 changes: 17 additions & 0 deletions rust/noosphere-car/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409))
* 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)


### Bug Fixes

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358))

## [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
34 changes: 34 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,40 @@
* 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-06-08)


### ⚠ BREAKING CHANGES

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409))
* 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)


### Bug Fixes

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358))


### 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.12.0
* 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 = { workspace = true }
Expand All @@ -36,7 +36,7 @@ tower = "~0.4"
tower-http = { version = "~0.3", features = ["cors", "trace"] }
async-trait = "~0.1"
tracing = { workspace = true }
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 @@ -46,13 +46,13 @@ mime_guess = "^2"
witty-phrase-generator = "~0.2"
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.12.0", 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-06-08)


### ⚠ 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
24 changes: 24 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-collections bumped from 0.3.1 to 0.3.2

## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.11.0...noosphere-core-v0.12.0) (2023-06-08)


### ⚠ BREAKING CHANGES

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409))

### 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))


### Bug Fixes

* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358))


### 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
Loading