From 18e3806619d6805aab79e859f4ff9760d72045ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Mar 2023 18:51:01 +0100 Subject: [PATCH] chore: release main (#214) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 12 ++++++------ wnfs-bench/Cargo.toml | 2 +- wnfs-common/CHANGELOG.md | 8 ++++++++ wnfs-common/Cargo.toml | 2 +- wnfs-hamt/CHANGELOG.md | 17 +++++++++++++++++ wnfs-hamt/Cargo.toml | 6 +++--- wnfs-namefilter/CHANGELOG.md | 15 +++++++++++++++ wnfs-namefilter/Cargo.toml | 4 ++-- wnfs-wasm/CHANGELOG.md | 14 ++++++++++++++ wnfs-wasm/Cargo.toml | 4 ++-- wnfs/CHANGELOG.md | 16 ++++++++++++++++ wnfs/Cargo.toml | 8 ++++---- 12 files changed, 89 insertions(+), 19 deletions(-) create mode 100644 wnfs-common/CHANGELOG.md create mode 100644 wnfs-hamt/CHANGELOG.md create mode 100644 wnfs-namefilter/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 27af77bb..8fd71ab5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,8 +1,8 @@ { - "wnfs": "0.1.18", - "wnfs-bench": "0.1.18", - "wnfs-common": "0.1.18", - "wnfs-hamt": "0.1.18", - "wnfs-namefilter": "0.1.18", - "wnfs-wasm": "0.1.18" + "wnfs": "0.1.19", + "wnfs-bench": "0.1.19", + "wnfs-common": "0.1.19", + "wnfs-hamt": "0.1.19", + "wnfs-namefilter": "0.1.19", + "wnfs-wasm": "0.1.19" } diff --git a/wnfs-bench/Cargo.toml b/wnfs-bench/Cargo.toml index c79a545b..f065896c 100644 --- a/wnfs-bench/Cargo.toml +++ b/wnfs-bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-bench" -version = "0.1.18" +version = "0.1.19" description = "WNFS Benchmarks" publish = false edition = "2021" diff --git a/wnfs-common/CHANGELOG.md b/wnfs-common/CHANGELOG.md new file mode 100644 index 00000000..638950de --- /dev/null +++ b/wnfs-common/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.1.19](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-common-v0.1.18...wnfs-common-v0.1.19) (2023-03-23) + + +### Miscellaneous Chores + +* release 0.1.19 ([1f37ec4](https://github.com/wnfs-wg/rs-wnfs/commit/1f37ec4d706b9bcb4305128451cc77063b4f211d)) diff --git a/wnfs-common/Cargo.toml b/wnfs-common/Cargo.toml index 53b80cac..ae3d8fdf 100644 --- a/wnfs-common/Cargo.toml +++ b/wnfs-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-common" -version = "0.1.18" +version = "0.1.19" description = "Common types for the Webnative Filesystem" keywords = ["wnfs", "webnative", "ipfs", "decentralisation"] categories = [ diff --git a/wnfs-hamt/CHANGELOG.md b/wnfs-hamt/CHANGELOG.md new file mode 100644 index 00000000..ef2eb68d --- /dev/null +++ b/wnfs-hamt/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +## [0.1.19](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-hamt-v0.1.18...wnfs-hamt-v0.1.19) (2023-03-23) + + +### Miscellaneous Chores + +* release 0.1.19 ([1f37ec4](https://github.com/wnfs-wg/rs-wnfs/commit/1f37ec4d706b9bcb4305128451cc77063b4f211d)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * wnfs-common bumped from 0.1.18 to 0.1.19 + * dev-dependencies + * wnfs-common bumped from 0.1.18 to 0.1.19 diff --git a/wnfs-hamt/Cargo.toml b/wnfs-hamt/Cargo.toml index 4100fa27..084465fd 100644 --- a/wnfs-hamt/Cargo.toml +++ b/wnfs-hamt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-hamt" -version = "0.1.18" +version = "0.1.19" description = "IPLD HAMT implementation for Webnative Filesystem" keywords = ["wnfs", "webnative", "ipfs", "decentralisation"] categories = [ @@ -35,14 +35,14 @@ semver = { version = "1.0", features = ["serde"] } serde = { version = "1.0", features = ["rc"] } sha3 = "0.10" thiserror = "1.0" -wnfs-common = { path = "../wnfs-common", version = "0.1.18" } +wnfs-common = { path = "../wnfs-common", version = "0.1.19" } [dev-dependencies] async-std = { version = "1.11", features = ["attributes"] } proptest = "1.1" rand = "0.8" test-strategy = "0.3" -wnfs-common = { path = "../wnfs-common", version = "0.1.18", features = ["test_utils"] } +wnfs-common = { path = "../wnfs-common", version = "0.1.19", features = ["test_utils"] } [features] test_utils = ["proptest"] diff --git a/wnfs-namefilter/CHANGELOG.md b/wnfs-namefilter/CHANGELOG.md new file mode 100644 index 00000000..28516cb1 --- /dev/null +++ b/wnfs-namefilter/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## [0.1.19](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-namefilter-v0.1.18...wnfs-namefilter-v0.1.19) (2023-03-23) + + +### Miscellaneous Chores + +* release 0.1.19 ([1f37ec4](https://github.com/wnfs-wg/rs-wnfs/commit/1f37ec4d706b9bcb4305128451cc77063b4f211d)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * wnfs-common bumped from 0.1.18 to 0.1.19 diff --git a/wnfs-namefilter/Cargo.toml b/wnfs-namefilter/Cargo.toml index 788a74f6..a0ee090c 100644 --- a/wnfs-namefilter/Cargo.toml +++ b/wnfs-namefilter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-namefilter" -version = "0.1.18" +version = "0.1.19" description = "Bloom filter for the Webnative Filesystem" keywords = ["wnfs", "webnative", "ipfs", "decentralisation"] categories = [ @@ -30,7 +30,7 @@ rand_core = "0.6" serde = { version = "1.0", features = ["rc"] } sha3 = "0.10" thiserror = "1.0" -wnfs-common = { path = "../wnfs-common", version = "0.1.18" } +wnfs-common = { path = "../wnfs-common", version = "0.1.19" } xxhash-rust = { version = "0.8", features = ["xxh3"] } [dev-dependencies] diff --git a/wnfs-wasm/CHANGELOG.md b/wnfs-wasm/CHANGELOG.md index 0f53217e..dc5531f5 100644 --- a/wnfs-wasm/CHANGELOG.md +++ b/wnfs-wasm/CHANGELOG.md @@ -8,6 +8,20 @@ * dependencies * wnfs bumped from 0.1.12 to 0.1.13 +## [0.1.19](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-wasm-v0.1.18...wnfs-wasm-v0.1.19) (2023-03-23) + + +### Miscellaneous Chores + +* release 0.1.19 ([1f37ec4](https://github.com/wnfs-wg/rs-wnfs/commit/1f37ec4d706b9bcb4305128451cc77063b4f211d)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * wnfs bumped from 0.1.18 to 0.1.19 + ## [0.1.18](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-wasm-v0.1.17...wnfs-wasm-v0.1.18) (2023-03-23) diff --git a/wnfs-wasm/Cargo.toml b/wnfs-wasm/Cargo.toml index 7d3daeea..1d4870e1 100644 --- a/wnfs-wasm/Cargo.toml +++ b/wnfs-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-wasm" -version = "0.1.18" +version = "0.1.19" description = "WebNative Filesystem API (WebAssembly)" keywords = ["wnfs", "wasm", "webnative", "ipfs", "decentralisation"] categories = [ @@ -28,7 +28,7 @@ rand_core = "0.6" wasm-bindgen = { version = "0.2.84", optional = true, features = ["serde-serialize"] } wasm-bindgen-futures = { version = "0.4", optional = true } web-sys = { version = "0.3", optional = true } -wnfs = { path = "../wnfs", version = "0.1.18" } +wnfs = { path = "../wnfs", version = "0.1.19" } [dev-dependencies] wasm-bindgen-test = "0.3" diff --git a/wnfs/CHANGELOG.md b/wnfs/CHANGELOG.md index 0e2cd8ca..cda42a24 100644 --- a/wnfs/CHANGELOG.md +++ b/wnfs/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.1.19](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.18...wnfs-v0.1.19) (2023-03-23) + + +### Miscellaneous Chores + +* release 0.1.19 ([1f37ec4](https://github.com/wnfs-wg/rs-wnfs/commit/1f37ec4d706b9bcb4305128451cc77063b4f211d)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * wnfs-common bumped from 0.1.18 to 0.1.19 + * wnfs-hamt bumped from 0.1.18 to 0.1.19 + * wnfs-namefilter bumped from 0.1.18 to 0.1.19 + ## [0.1.18](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.17...wnfs-v0.1.18) (2023-03-23) diff --git a/wnfs/Cargo.toml b/wnfs/Cargo.toml index 06985917..4e086926 100644 --- a/wnfs/Cargo.toml +++ b/wnfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs" -version = "0.1.18" +version = "0.1.19" description = "WebNative filesystem core implementation" keywords = ["wnfs", "webnative", "ipfs", "decentralisation"] categories = [ @@ -36,9 +36,9 @@ serde = { version = "1.0", features = ["rc"] } sha3 = "0.10" skip_ratchet = { version = "0.1", features = ["serde"] } thiserror = "1.0" -wnfs-common = { path = "../wnfs-common", version = "0.1.18" } -wnfs-hamt = { path = "../wnfs-hamt", version = "0.1.18" } -wnfs-namefilter = { path = "../wnfs-namefilter", version = "0.1.18" } +wnfs-common = { path = "../wnfs-common", version = "0.1.19" } +wnfs-hamt = { path = "../wnfs-hamt", version = "0.1.19" } +wnfs-namefilter = { path = "../wnfs-namefilter", version = "0.1.19" } xxhash-rust = { version = "0.8", features = ["xxh3"] } [dev-dependencies]