diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7495c30ca..220ecb4a8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,14 +1,14 @@ { - "rust/noosphere-api": "0.8.3", - "rust/noosphere-cli": "0.11.3", + "rust/noosphere-api": "0.9.0", + "rust/noosphere-cli": "0.12.0", "rust/noosphere-collections": "0.6.0", - "rust/noosphere-core": "0.12.3", - "rust/noosphere-into": "0.9.3", - "rust/noosphere-ns": "0.8.3", + "rust/noosphere-core": "0.13.0", + "rust/noosphere-into": "0.10.0", + "rust/noosphere-ns": "0.9.0", "rust/noosphere-storage": "0.7.0", - "rust/noosphere": "0.11.3", - "rust/noosphere-ipfs": "0.5.3", - "rust/noosphere-gateway": "0.5.3", - "rust/noosphere-sphere": "0.6.3", + "rust/noosphere": "0.12.0", + "rust/noosphere-ipfs": "0.6.0", + "rust/noosphere-gateway": "0.6.0", + "rust/noosphere-sphere": "0.7.0", "rust/noosphere-car": "0.2.0" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index ba40552e5..21898d2f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3416,7 +3416,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.11.3" +version = "0.12.0" dependencies = [ "anyhow", "async-stream", @@ -3457,7 +3457,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.8.3" +version = "0.9.0" dependencies = [ "anyhow", "cid 0.10.1", @@ -3499,7 +3499,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.11.3" +version = "0.12.0" dependencies = [ "anyhow", "async-trait", @@ -3566,7 +3566,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.12.3" +version = "0.13.0" dependencies = [ "anyhow", "async-once-cell 0.3.1", @@ -3608,7 +3608,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.5.3" +version = "0.6.0" dependencies = [ "anyhow", "async-stream", @@ -3646,7 +3646,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "async-compat", @@ -3677,7 +3677,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.5.3" +version = "0.6.0" dependencies = [ "anyhow", "async-compat", @@ -3705,7 +3705,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.8.3" +version = "0.9.0" dependencies = [ "anyhow", "async-trait", @@ -3739,7 +3739,7 @@ dependencies = [ [[package]] name = "noosphere-sphere" -version = "0.6.3" +version = "0.7.0" dependencies = [ "anyhow", "async-stream", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md index 99d198058..621794333 100644 --- a/rust/noosphere-api/CHANGELOG.md +++ b/rust/noosphere-api/CHANGELOG.md @@ -64,6 +64,24 @@ * dependencies * noosphere-core bumped from 0.12.2 to 0.12.3 +## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.8.3...noosphere-api-v0.9.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.12.3 to 0.13.0 + ## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.7.9...noosphere-api-v0.8.0) (2023-06-08) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index b7eec0461..58e88e4d4 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-api" -version = "0.8.3" +version = "0.9.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"] @@ -26,7 +26,7 @@ url = "^2" serde = { workspace = true } serde_urlencoded = "~0.7" tracing = { workspace = true } -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } +noosphere-core = { version = "0.13.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"] } diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index e24e9e09b..2e0a5a0a5 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -166,6 +166,31 @@ * dev-dependencies * noosphere-ns bumped from 0.8.2 to 0.8.3 +## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.11.3...noosphere-cli-v0.12.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.5.3 to 0.6.0 + * noosphere-core bumped from 0.12.3 to 0.13.0 + * noosphere-sphere bumped from 0.6.3 to 0.7.0 + * noosphere-api bumped from 0.8.3 to 0.9.0 + * noosphere-gateway bumped from 0.5.3 to 0.6.0 + * noosphere bumped from 0.11.3 to 0.12.0 + * dev-dependencies + * noosphere-ns bumped from 0.8.3 to 0.9.0 + ## [0.11.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.11.0...noosphere-cli-v0.11.1) (2023-06-09) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index 93ded53f4..7f4802965 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.11.3" +version = "0.12.0" edition = "2021" description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol" keywords = ["cli", "sync", "noosphere", "p2p", "ucan"] @@ -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.8.3", path = "../noosphere-ns" } +noosphere-ns = { version = "0.9.0", path = "../noosphere-ns" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tempfile = { workspace = true } @@ -46,13 +46,13 @@ mime_guess = "^2" witty-phrase-generator = "~0.2" globset = "~0.4" -noosphere-ipfs = { version = "0.5.3", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } -noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" } +noosphere-ipfs = { version = "0.6.0", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } +noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } -noosphere-api = { version = "0.8.3", path = "../noosphere-api" } -noosphere-gateway = { version = "0.5.3", path = "../noosphere-gateway" } -noosphere = { version = "0.11.3", path = "../noosphere" } +noosphere-api = { version = "0.9.0", path = "../noosphere-api" } +noosphere-gateway = { version = "0.6.0", path = "../noosphere-gateway" } +noosphere = { version = "0.12.0", path = "../noosphere" } ucan = { workspace = true } ucan-key-support = { workspace = true } cid = { workspace = true } diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index 073779dfb..016007755 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -5,6 +5,17 @@ * noosphere-storage bumped from 0.4.1 to 0.4.2 * noosphere-collections bumped from 0.3.1 to 0.3.2 +## [0.13.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.12.3...noosphere-core-v0.13.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + ## [0.12.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.12.2...noosphere-core-v0.12.3) (2023-06-23) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index 3cfd365a9..7c4104fcc 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-core" -version = "0.12.3" +version = "0.13.0" edition = "2021" description = "Core data types of the Rust Noosphere implementation" keywords = ["hamt", "ipld", "noosphere", "p2p", "async"] diff --git a/rust/noosphere-gateway/CHANGELOG.md b/rust/noosphere-gateway/CHANGELOG.md index ca2faa29d..38c9e4f4f 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -84,6 +84,28 @@ * noosphere-sphere bumped from 0.6.2 to 0.6.3 * noosphere-api bumped from 0.8.2 to 0.8.3 +## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.5.3...noosphere-gateway-v0.6.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.5.3 to 0.6.0 + * noosphere-core bumped from 0.12.3 to 0.13.0 + * noosphere-ns bumped from 0.8.3 to 0.9.0 + * noosphere-sphere bumped from 0.6.3 to 0.7.0 + * noosphere-api bumped from 0.8.3 to 0.9.0 + ## [0.5.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.5.1...noosphere-gateway-v0.5.2) (2023-06-22) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 87a026411..dfb449cde 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-gateway" -version = "0.5.3" +version = "0.6.0" edition = "2021" description = "A geist on the network that enables user spheres to discover each other" keywords = ["http", "geist", "noosphere", "p2p", "ucan"] @@ -39,12 +39,12 @@ url = { version = "^2", features = [ "serde" ] } mime_guess = "^2" noosphere-car = { version = "0.2.0", path = "../noosphere-car" } -noosphere-ipfs = { version = "0.5.3", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } -noosphere-ns = { version = "0.8.3", path = "../noosphere-ns" } +noosphere-ipfs = { version = "0.6.0", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } +noosphere-ns = { version = "0.9.0", path = "../noosphere-ns" } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } -noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" } -noosphere-api = { version = "0.8.3", path = "../noosphere-api" } +noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" } +noosphere-api = { version = "0.9.0", path = "../noosphere-api" } ucan = { workspace = true } ucan-key-support = { workspace = true } cid = { workspace = true } diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index 0b057ce26..7875280ad 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -105,6 +105,27 @@ * dev-dependencies * noosphere-sphere bumped from 0.6.2 to 0.6.3 +## [0.10.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.9.3...noosphere-into-v0.10.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.12.3 to 0.13.0 + * noosphere-sphere bumped from 0.6.3 to 0.7.0 + * dev-dependencies + * noosphere-sphere bumped from 0.6.3 to 0.7.0 + ## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.8.9...noosphere-into-v0.9.0) (2023-06-08) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index 63067628f..79fd4428d 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.9.3" +version = "0.10.0" 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.12.3", path = "../noosphere-core" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } -noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" } +noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" } subtext = { version = "0.3.2", features = ["stream"] } async-trait = "~0.1" url = "2" @@ -45,7 +45,7 @@ ucan = { workspace = true } ucan-key-support = { workspace = true } [dev-dependencies] -noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere", features = ["helpers"] } +noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere", features = ["helpers"] } wasm-bindgen-test = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] diff --git a/rust/noosphere-ipfs/CHANGELOG.md b/rust/noosphere-ipfs/CHANGELOG.md index f0285ca2e..8129c88d0 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -36,6 +36,24 @@ * dev-dependencies * noosphere-core bumped from 0.12.2 to 0.12.3 +## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.5.3...noosphere-ipfs-v0.6.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dev-dependencies + * noosphere-core bumped from 0.12.3 to 0.13.0 + ## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.4.4...noosphere-ipfs-v0.5.0) (2023-06-08) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index ebca8afc4..2da0a36a6 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.5.3" +version = "0.6.0" edition = "2021" description = "An interface for an IPFS client." keywords = [ @@ -54,4 +54,4 @@ rand = "~0.8" libipld-cbor = { workspace = true } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } noosphere-car = { version = "0.2.0", path = "../noosphere-car" } -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index 95cdb8c01..976302298 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -83,6 +83,26 @@ * noosphere bumped from 0.11.2 to 0.11.3 * noosphere-ipfs bumped from 0.5.2 to 0.5.3 +## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.8.3...noosphere-ns-v0.9.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.12.3 to 0.13.0 + * noosphere bumped from 0.11.3 to 0.12.0 + * noosphere-ipfs bumped from 0.5.3 to 0.6.0 + ## [0.8.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.8.0...noosphere-ns-v0.8.1) (2023-06-09) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index 133bfe354..8c18bbf77 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.8.3" +version = "0.9.0" edition = "2021" description = "A P2P name system for Noosphere" keywords = [ @@ -37,13 +37,13 @@ ucan = { workspace = true } ucan-key-support = { workspace = true } tokio = { version = "1.28", features = ["io-util", "io-std", "sync", "macros", "rt", "rt-multi-thread"] } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } libp2p = { version = "0.51.3", default-features = false, features = [ "ed25519", "identify", "dns", "kad", "macros", "noise", "serde", "tcp", "tokio", "yamux" ] } void = { workspace = true } # noosphere_ns::bin -noosphere = { version = "0.11.3", path = "../noosphere", optional = true } -noosphere-ipfs = { version = "0.5.3", path = "../noosphere-ipfs", optional = true } +noosphere = { version = "0.12.0", path = "../noosphere", optional = true } +noosphere-ipfs = { version = "0.6.0", path = "../noosphere-ipfs", 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-sphere/CHANGELOG.md b/rust/noosphere-sphere/CHANGELOG.md index 8216c0400..75ad178a7 100644 --- a/rust/noosphere-sphere/CHANGELOG.md +++ b/rust/noosphere-sphere/CHANGELOG.md @@ -23,6 +23,25 @@ * noosphere-core bumped from 0.12.2 to 0.12.3 * noosphere-api bumped from 0.8.2 to 0.8.3 +## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.6.3...noosphere-sphere-v0.7.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.12.3 to 0.13.0 + * noosphere-api bumped from 0.8.3 to 0.9.0 + ## [0.6.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.6.1...noosphere-sphere-v0.6.2) (2023-06-22) diff --git a/rust/noosphere-sphere/Cargo.toml b/rust/noosphere-sphere/Cargo.toml index 59dc13c42..f4c577ff1 100644 --- a/rust/noosphere-sphere/Cargo.toml +++ b/rust/noosphere-sphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-sphere" -version = "0.6.3" +version = "0.7.0" edition = "2021" description = "High-level access to content, address books and other features of spheres" keywords = [] @@ -22,9 +22,9 @@ cid = { workspace = true } url = { version = "^2", features = ["serde"] } tracing = { workspace = true } -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } -noosphere-api = { version = "0.8.3", path = "../noosphere-api" } +noosphere-api = { version = "0.9.0", path = "../noosphere-api" } noosphere-car = { version = "0.2.0", path = "../noosphere-car" } ucan = { workspace = true } diff --git a/rust/noosphere/CHANGELOG.md b/rust/noosphere/CHANGELOG.md index 8d946c9a6..98a4d5862 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -66,6 +66,28 @@ * noosphere-ipfs bumped from 0.5.2 to 0.5.3 * noosphere-into bumped from 0.9.2 to 0.9.3 +## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.11.3...noosphere-v0.12.0) (2023-06-28) + + +### ⚠ BREAKING CHANGES + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) + +### Features + +* Update to `rs-ucan` 0.4.0, implementing UCAN 0.10ish. ([#449](https://github.com/subconsciousnetwork/noosphere/issues/449)) ([8b806c5](https://github.com/subconsciousnetwork/noosphere/commit/8b806c5462b5601a5f8417a6a20769b76b57ee6a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.12.3 to 0.13.0 + * noosphere-sphere bumped from 0.6.3 to 0.7.0 + * noosphere-api bumped from 0.8.3 to 0.9.0 + * noosphere-ipfs bumped from 0.5.3 to 0.6.0 + * noosphere-into bumped from 0.9.3 to 0.10.0 + ## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.10.11...noosphere-v0.11.0) (2023-06-08) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index 79bdd20d5..fb87b04a7 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.11.3" +version = "0.12.0" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -37,11 +37,11 @@ libipld-core = { workspace = true } libipld-cbor = { workspace = true } bytes = "^1" -noosphere-core = { version = "0.12.3", path = "../noosphere-core" } -noosphere-sphere = { version = "0.6.3", path = "../noosphere-sphere" } +noosphere-core = { version = "0.13.0", path = "../noosphere-core" } +noosphere-sphere = { version = "0.7.0", path = "../noosphere-sphere" } noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } -noosphere-api = { version = "0.8.3", path = "../noosphere-api" } -noosphere-ipfs = { version = "0.5.3", path = "../noosphere-ipfs", optional = true } +noosphere-api = { version = "0.9.0", path = "../noosphere-api" } +noosphere-ipfs = { version = "0.6.0", path = "../noosphere-ipfs", optional = true } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -56,7 +56,7 @@ rexie = { version = "~0.4" } wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } js-sys = { workspace = true } -noosphere-into = { version = "0.9.3", path = "../noosphere-into" } +noosphere-into = { version = "0.10.0", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] version = "~0.3"