Skip to content

Commit

Permalink
chore: release main (#330)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Aug 17, 2023
1 parent ca8798b commit 3bede29
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 10 deletions.
7 changes: 4 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion wnfs-bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wnfs-bench"
version = "0.1.23"
version = "0.1.24"
description = "WNFS Benchmarks"
publish = false
edition = "2021"
Expand Down
7 changes: 7 additions & 0 deletions wnfs-nameaccumulator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion wnfs-nameaccumulator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down
15 changes: 15 additions & 0 deletions wnfs-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
6 changes: 3 additions & 3 deletions wnfs-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down Expand Up @@ -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"
Expand Down
20 changes: 20 additions & 0 deletions wnfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions wnfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down Expand Up @@ -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"] }
Expand Down

0 comments on commit 3bede29

Please sign in to comment.