diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3c5975c31..6a080087d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -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" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index dcdcbb6d9..6cc12db59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3676,7 +3676,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.6.3" +version = "0.6.4" dependencies = [ "anyhow", "async-trait", @@ -3710,7 +3710,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.5.6" +version = "0.5.7" dependencies = [ "anyhow", "cid 0.9.0", @@ -3732,7 +3732,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.6.6" +version = "0.6.7" dependencies = [ "anyhow", "async-trait", @@ -3804,7 +3804,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.6.3" +version = "0.6.4" dependencies = [ "anyhow", "async-once-cell 0.3.1", @@ -3845,7 +3845,7 @@ dependencies = [ [[package]] name = "noosphere-fs" -version = "0.5.3" +version = "0.5.4" dependencies = [ "anyhow", "async-stream", @@ -3913,7 +3913,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.4.5" +version = "0.4.6" dependencies = [ "anyhow", "async-compat", @@ -3945,7 +3945,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "async-compat", @@ -3967,7 +3967,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.4.3" +version = "0.4.4" dependencies = [ "anyhow", "async-trait", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md index 1920567b6..0839eacad 100644 --- a/rust/noosphere-api/CHANGELOG.md +++ b/rust/noosphere-api/CHANGELOG.md @@ -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) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index b0a4e7b32..16b87c9a3 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -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"] @@ -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"] } diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index 052f1d4a0..08902fdbf 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -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-24) + + +### 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) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index e6d2ba1ba..e53add923 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -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"] @@ -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" diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index 47d77137b..a6bef71bd 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -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-24) + + +### 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) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index 6c755102e..a096e4c6b 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -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"] diff --git a/rust/noosphere-fs/CHANGELOG.md b/rust/noosphere-fs/CHANGELOG.md index 32a57af6b..3862dc225 100644 --- a/rust/noosphere-fs/CHANGELOG.md +++ b/rust/noosphere-fs/CHANGELOG.md @@ -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) diff --git a/rust/noosphere-fs/Cargo.toml b/rust/noosphere-fs/Cargo.toml index d77945773..e2bd9466b 100644 --- a/rust/noosphere-fs/Cargo.toml +++ b/rust/noosphere-fs/Cargo.toml @@ -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"] @@ -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"] } diff --git a/rust/noosphere-gateway/CHANGELOG.md b/rust/noosphere-gateway/CHANGELOG.md new file mode 100644 index 000000000..29af9a2d0 --- /dev/null +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## 0.1.0 (2023-02-24) + + +### 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 diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 720ab683b..ae1e1fbaf 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -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" diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index a5bbe5343..9bdd8a128 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -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-24) + + +### 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) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index 4f6b06630..14d4679d9 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -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"] @@ -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" diff --git a/rust/noosphere-ipfs/CHANGELOG.md b/rust/noosphere-ipfs/CHANGELOG.md index 738a01de4..50a68a1f5 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -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-24) + + +### 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) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index 6ac6cfbe8..7df18161b 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -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 = [ @@ -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" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index e86055af1..7c8d03a46 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -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) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index 3d42ce3d9..cf170735e 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -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 = [ @@ -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 } diff --git a/rust/noosphere/CHANGELOG.md b/rust/noosphere/CHANGELOG.md index 4f9ddd3ee..93047e9c5 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -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-24) + + +### 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) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index b3a46ad43..f9b181285 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.6.3" +version = "0.6.4" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -32,10 +32,10 @@ subtext = { version = "0.3.2" } itertools = "0.10.5" tokio-stream = "~0.1" -noosphere-core = { version = "0.6.3", path = "../noosphere-core" } -noosphere-fs = { version = "0.5.3", path = "../noosphere-fs" } +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" } ucan = { version = "0.1.0" } ucan-key-support = { version = "0.1.0" } @@ -50,7 +50,7 @@ rexie = { version = "~0.4" } wasm-bindgen = "~0.2" wasm-bindgen-futures = "0.4.33" js-sys = "~0.3" -noosphere-into = { version = "0.4.5", path = "../noosphere-into" } +noosphere-into = { version = "0.4.6", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] version = "~0.3"