From 3bede29ffa90a7185067185ab080afc46124f143 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Aug 2023 20:09:10 +0200 Subject: [PATCH] chore: release main (#330) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 7 ++++--- wnfs-bench/Cargo.toml | 2 +- wnfs-nameaccumulator/CHANGELOG.md | 7 +++++++ wnfs-nameaccumulator/Cargo.toml | 2 +- wnfs-wasm/CHANGELOG.md | 15 +++++++++++++++ wnfs-wasm/Cargo.toml | 6 +++--- wnfs/CHANGELOG.md | 20 ++++++++++++++++++++ wnfs/Cargo.toml | 4 ++-- 8 files changed, 53 insertions(+), 10 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2e76136f..c5f27817 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,8 @@ { - "wnfs": "0.1.23", + "wnfs": "0.1.24", "wnfs-common": "0.1.23", "wnfs-hamt": "0.1.23", - "wnfs-nameaccumulator": "0.1.23", - "wnfs-wasm": "0.1.23" + "wnfs-nameaccumulator": "0.1.24", + "wnfs-wasm": "0.1.24", + "wnfs-bench": "0.1.24" } diff --git a/wnfs-bench/Cargo.toml b/wnfs-bench/Cargo.toml index ea942fec..141c1fd0 100644 --- a/wnfs-bench/Cargo.toml +++ b/wnfs-bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-bench" -version = "0.1.23" +version = "0.1.24" description = "WNFS Benchmarks" publish = false edition = "2021" diff --git a/wnfs-nameaccumulator/CHANGELOG.md b/wnfs-nameaccumulator/CHANGELOG.md index c1337a9f..7d5a4590 100644 --- a/wnfs-nameaccumulator/CHANGELOG.md +++ b/wnfs-nameaccumulator/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.24](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-nameaccumulator-v0.1.23...wnfs-nameaccumulator-v0.1.24) (2023-08-17) + + +### Bug Fixes + +* More reliably cache `NameAccumulator` modexps ([#326](https://github.com/wnfs-wg/rs-wnfs/issues/326)) ([380ee8c](https://github.com/wnfs-wg/rs-wnfs/commit/380ee8c7b07a73912100c2689334596e3ad8d9c0)) + ## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-nameaccumulator-v0.1.22...wnfs-nameaccumulator-v0.1.23) (2023-07-21) diff --git a/wnfs-nameaccumulator/Cargo.toml b/wnfs-nameaccumulator/Cargo.toml index 693e0548..1fd6fd6a 100644 --- a/wnfs-nameaccumulator/Cargo.toml +++ b/wnfs-nameaccumulator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-nameaccumulator" -version = "0.1.23" +version = "0.1.24" description = "Cryptographic accumulators for the Webnative Filesystem" keywords = ["wnfs", "webnative", "ipfs", "decentralisation"] categories = [ diff --git a/wnfs-wasm/CHANGELOG.md b/wnfs-wasm/CHANGELOG.md index 20fab2e0..93ecbef6 100644 --- a/wnfs-wasm/CHANGELOG.md +++ b/wnfs-wasm/CHANGELOG.md @@ -12,6 +12,21 @@ * dependencies * wnfs bumped from 0.1.19 to 0.1.20 +## [0.1.24](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-wasm-v0.1.23...wnfs-wasm-v0.1.24) (2023-08-17) + + +### Features + +* Implement public directory cp & more efficient copy for `PrivateFile` ([#319](https://github.com/wnfs-wg/rs-wnfs/issues/319)) ([cebb956](https://github.com/wnfs-wg/rs-wnfs/commit/cebb956cdaf88ed6e2eb09b784eeec5d61bdf4c8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * wnfs bumped from 0.1.23 to 0.1.24 + * wnfs-nameaccumulator bumped from 0.1.23 to 0.1.24 + ## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-wasm-v0.1.22...wnfs-wasm-v0.1.23) (2023-07-21) diff --git a/wnfs-wasm/Cargo.toml b/wnfs-wasm/Cargo.toml index 53f17856..2c073461 100644 --- a/wnfs-wasm/Cargo.toml +++ b/wnfs-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs-wasm" -version = "0.1.23" +version = "0.1.24" description = "WebNative Filesystem API (WebAssembly)" keywords = ["wnfs", "wasm", "webnative", "ipfs", "decentralisation"] categories = [ @@ -30,8 +30,8 @@ rand_core = "0.6" wasm-bindgen = { version = "0.2.87", 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.23" } -wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.23" } +wnfs = { path = "../wnfs", version = "0.1.24" } +wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.24" } [dev-dependencies] wasm-bindgen-test = "0.3" diff --git a/wnfs/CHANGELOG.md b/wnfs/CHANGELOG.md index 5a356d49..2d6ea06a 100644 --- a/wnfs/CHANGELOG.md +++ b/wnfs/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.1.24](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.23...wnfs-v0.1.24) (2023-08-17) + + +### Features + +* Implement public directory cp & more efficient copy for `PrivateFile` ([#319](https://github.com/wnfs-wg/rs-wnfs/issues/319)) ([cebb956](https://github.com/wnfs-wg/rs-wnfs/commit/cebb956cdaf88ed6e2eb09b784eeec5d61bdf4c8)) + + +### Bug Fixes + +* Improve performance of `get_revision_name()` ([#317](https://github.com/wnfs-wg/rs-wnfs/issues/317)) ([55cf2e0](https://github.com/wnfs-wg/rs-wnfs/commit/55cf2e013cb84cbaab2086c83866f93ecadb0a88)) +* More reliably cache `NameAccumulator` modexps ([#326](https://github.com/wnfs-wg/rs-wnfs/issues/326)) ([380ee8c](https://github.com/wnfs-wg/rs-wnfs/commit/380ee8c7b07a73912100c2689334596e3ad8d9c0)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * wnfs-nameaccumulator bumped from 0.1.23 to 0.1.24 + ## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.22...wnfs-v0.1.23) (2023-07-21) diff --git a/wnfs/Cargo.toml b/wnfs/Cargo.toml index 2c664b7d..bc53cdaf 100644 --- a/wnfs/Cargo.toml +++ b/wnfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wnfs" -version = "0.1.23" +version = "0.1.24" description = "WebNative filesystem core implementation" keywords = ["wnfs", "webnative", "ipfs", "decentralisation"] categories = [ @@ -45,7 +45,7 @@ skip_ratchet = { version = "0.3", features = ["serde"] } thiserror = "1.0" wnfs-common = { path = "../wnfs-common", version = "0.1.23" } wnfs-hamt = { path = "../wnfs-hamt", version = "0.1.23" } -wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.23" } +wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.24" } [dev-dependencies] async-std = { version = "1.11", features = ["attributes"] }