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 Feb 27, 2023
1 parent 270e3ec commit 4bd8617
Show file tree
Hide file tree
Showing 20 changed files with 147 additions and 45 deletions.
17 changes: 9 additions & 8 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"rust/noosphere-api": "0.5.6",
"rust/noosphere-cli": "0.6.6",
"rust/noosphere-api": "0.5.7",
"rust/noosphere-cli": "0.6.7",
"rust/noosphere-collections": "0.3.2",
"rust/noosphere-core": "0.6.3",
"rust/noosphere-into": "0.4.5",
"rust/noosphere-ns": "0.4.3",
"rust/noosphere-core": "0.6.4",
"rust/noosphere-into": "0.4.6",
"rust/noosphere-ns": "0.4.4",
"rust/noosphere-storage": "0.4.2",
"rust/noosphere-fs": "0.5.3",
"rust/noosphere": "0.6.3",
"rust/noosphere-ipfs": "0.1.2"
"rust/noosphere-fs": "0.5.4",
"rust/noosphere": "0.6.4",
"rust/noosphere-ipfs": "0.1.3",
"rust/noosphere-gateway": "0.1.0"
}
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
* noosphere-core bumped from 0.6.2 to 0.6.3
* noosphere-storage bumped from 0.4.1 to 0.4.2

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.6.3 to 0.6.4

## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.4.0...noosphere-api-v0.5.0) (2022-11-30)


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.5.6"
version = "0.5.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 @@ -25,7 +25,7 @@ url = "^2"
serde = "^1"
serde_urlencoded = "~0.7"
tracing = "~0.1"
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls"] }

Expand Down
18 changes: 18 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,24 @@
* noosphere-api bumped from 0.5.5 to 0.5.6
* noosphere bumped from 0.6.2 to 0.6.3

## [0.6.7](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.6.6...noosphere-cli-v0.6.7) (2023-02-27)


### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.1.2 to 0.1.3
* noosphere-core bumped from 0.6.3 to 0.6.4
* noosphere-fs bumped from 0.5.3 to 0.5.4
* noosphere-api bumped from 0.5.6 to 0.5.7
* noosphere bumped from 0.6.3 to 0.6.4

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


Expand Down
12 changes: 6 additions & 6 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.6.6"
version = "0.6.7"
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 @@ -48,13 +48,13 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.15", features = [ "serde" ] }
globset = "~0.4"

noosphere-ipfs = { version = "0.1.2", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-fs = { version = "0.5.3", path = "../noosphere-fs" }
noosphere-ipfs = { version = "0.1.3", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
noosphere-fs = { version = "0.5.4", path = "../noosphere-fs" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-api = { version = "0.5.6", path = "../noosphere-api" }
noosphere-api = { version = "0.5.7", path = "../noosphere-api" }
noosphere-gateway = { version = "0.1.0", path = "../noosphere-gateway" }
noosphere = { version = "0.6.3", path = "../noosphere" }
noosphere = { version = "0.6.4", path = "../noosphere" }
ucan = { version = "0.1.0" }
ucan-key-support = { version = "0.1.0" }
cid = "~0.9"
Expand Down
7 changes: 7 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-collections bumped from 0.3.1 to 0.3.2

## [0.6.4](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.6.3...noosphere-core-v0.6.4) (2023-02-27)


### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))

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


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.6.3"
version = "0.6.4"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down
4 changes: 4 additions & 0 deletions rust/noosphere-fs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
* dependencies
* noosphere-core bumped from 0.6.1 to 0.6.2

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.6.3 to 0.6.4

## [0.5.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-fs-v0.5.2...noosphere-fs-v0.5.3) (2023-02-16)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-fs"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
description = "A high-level, FS-like view over Noosphere content"
keywords = ["fs", "ipld", "noosphere", "p2p", "async"]
Expand All @@ -19,7 +19,7 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
readme = "README.md"

[dependencies]
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }

tokio = { version = "^1", features = ["sync", "io-util"] }
Expand Down
19 changes: 19 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## 0.1.0 (2023-02-27)


### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.1.2 to 0.1.3
* noosphere-core bumped from 0.6.3 to 0.6.4
* noosphere-fs bumped from 0.5.3 to 0.5.4
* noosphere-api bumped from 0.5.6 to 0.5.7
* noosphere bumped from 0.6.3 to 0.6.4
10 changes: 5 additions & 5 deletions rust/noosphere-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ witty-phrase-generator = "~0.2"
toml_edit = { version = "~0.15", features = [ "serde" ] }
globset = "~0.4"

noosphere-ipfs = { version = "0.1.2", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-fs = { version = "0.5.3", path = "../noosphere-fs" }
noosphere-ipfs = { version = "0.1.3", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
noosphere-fs = { version = "0.5.4", path = "../noosphere-fs" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-api = { version = "0.5.6", path = "../noosphere-api" }
noosphere = { version = "0.6.3", path = "../noosphere" }
noosphere-api = { version = "0.5.7", path = "../noosphere-api" }
noosphere = { version = "0.6.4", path = "../noosphere" }
ucan = { version = "0.1.0" }
ucan-key-support = { version = "0.1.0" }
cid = "~0.9"
Expand Down
15 changes: 15 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,21 @@
* noosphere-storage bumped from 0.4.1 to 0.4.2
* noosphere-fs bumped from 0.5.2 to 0.5.3

## [0.4.6](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.4.5...noosphere-into-v0.4.6) (2023-02-27)


### Features

* Noosphere builds and runs tests on Windows ([#228](https://github.com/subconsciousnetwork/noosphere/issues/228)) ([d1320f0](https://github.com/subconsciousnetwork/noosphere/commit/d1320f08429c8f8090fd4612b56ebf9386414cc7))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.6.3 to 0.6.4
* noosphere-fs bumped from 0.5.3 to 0.5.4

## [0.4.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.3.0...noosphere-into-v0.4.0) (2022-12-14)


Expand Down
6 changes: 3 additions & 3 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.4.5"
version = "0.4.6"
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.6.3", path = "../noosphere-core" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-fs = { version = "0.5.3", path = "../noosphere-fs" }
noosphere-fs = { version = "0.5.4", path = "../noosphere-fs" }
subtext = { version = "0.3.2", features = ["stream"] }
async-trait = "~0.1"
url = "2"
Expand Down
14 changes: 14 additions & 0 deletions rust/noosphere-ipfs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
* dev-dependencies
* noosphere-storage bumped from 0.4.0 to 0.4.2

## [0.1.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.1.2...noosphere-ipfs-v0.1.3) (2023-02-27)


### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))


### Dependencies

* The following workspace dependencies were updated
* dev-dependencies
* noosphere-core bumped from 0.6.3 to 0.6.4

## [0.1.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.1.0...noosphere-ipfs-v0.1.1) (2023-01-31)


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.1.2"
version = "0.1.3"
edition = "2021"
description = "An interface for an IPFS client."
keywords = [
Expand Down Expand Up @@ -44,4 +44,4 @@ url = { version = "^2", features = [ "serde" ] }
iroh-car = { version = "0.1.3" }
libipld-cbor = "~0.15"
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
5 changes: 5 additions & 0 deletions rust/noosphere-ns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
* noosphere-core bumped from 0.6.0 to 0.6.1
* noosphere bumped from 0.6.0 to 0.6.1

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.6.3 to 0.6.4
* noosphere bumped from 0.6.3 to 0.6.4

## [0.4.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.4.2...noosphere-ns-v0.4.3) (2023-02-16)


Expand Down
6 changes: 3 additions & 3 deletions rust/noosphere-ns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-ns"
version = "0.4.3"
version = "0.4.4"
edition = "2021"
description = "A P2P name system for Noosphere"
keywords = [
Expand Down Expand Up @@ -36,9 +36,9 @@ ucan = { version = "0.1.0" }
ucan-key-support = { version = "0.1.0" }
tokio = { version = "1.15", features = ["io-util", "io-std", "sync", "macros", "rt", "rt-multi-thread"] }
noosphere-storage = { version = "0.4.2", path = "../noosphere-storage" }
noosphere-core = { version = "0.6.3", path = "../noosphere-core" }
noosphere-core = { version = "0.6.4", path = "../noosphere-core" }
# noosphere_ns::bin
noosphere = { version = "0.6.3", path = "../noosphere", optional = true }
noosphere = { version = "0.6.4", path = "../noosphere", optional = true }
clap = { version = "^4.1", features = ["derive"], optional = true }
home = { version = "~0.5", optional = true }
toml = { version = "~0.5", optional = true }
Expand Down
15 changes: 15 additions & 0 deletions rust/noosphere/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@
* dependencies
* noosphere-into bumped from 0.4.4 to 0.4.5

## [0.6.4](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.6.3...noosphere-v0.6.4) (2023-02-27)


### Features

* Introduce `noosphere-gateway` crate ([#238](https://github.com/subconsciousnetwork/noosphere/issues/238)) ([791bc39](https://github.com/subconsciousnetwork/noosphere/commit/791bc3996cfac12cb077c3721f22d080a71d33ba))
* Noosphere builds and runs tests on Windows ([#228](https://github.com/subconsciousnetwork/noosphere/issues/228)) ([d1320f0](https://github.com/subconsciousnetwork/noosphere/commit/d1320f08429c8f8090fd4612b56ebf9386414cc7))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-into bumped from 0.4.5 to 0.4.6

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


Expand Down
Loading

0 comments on commit 4bd8617

Please sign in to comment.