Skip to content

Commit

Permalink
chore: release main (#301)
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 Jul 21, 2023
1 parent eb17ea2 commit cfb0783
Show file tree
Hide file tree
Showing 12 changed files with 120 additions and 19 deletions.
12 changes: 6 additions & 6 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"wnfs": "0.1.22",
"wnfs-bench": "0.1.22",
"wnfs-common": "0.1.22",
"wnfs-hamt": "0.1.22",
"wnfs-nameaccumulator": "0.1.22",
"wnfs-wasm": "0.1.22"
"wnfs": "0.1.23",
"wnfs-bench": "0.1.23",
"wnfs-common": "0.1.23",
"wnfs-hamt": "0.1.23",
"wnfs-nameaccumulator": "0.1.23",
"wnfs-wasm": "0.1.23"
}
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.22"
version = "0.1.23"
description = "WNFS Benchmarks"
publish = false
edition = "2021"
Expand Down
13 changes: 13 additions & 0 deletions wnfs-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-common-v0.1.22...wnfs-common-v0.1.23) (2023-07-21)


### Features

* Switch from Namefilter to Name Accumulators ([#247](https://github.com/wnfs-wg/rs-wnfs/issues/247)) ([7026a37](https://github.com/wnfs-wg/rs-wnfs/commit/7026a379443038fa1b0410df1c7d0bc23649f17a))
* Switch from SHA3-256 to BLAKE3-256 ([#306](https://github.com/wnfs-wg/rs-wnfs/issues/306)) ([e164a1f](https://github.com/wnfs-wg/rs-wnfs/commit/e164a1fc80c30d9446404a61b05fd995d7d88c0e))


### Miscellaneous Chores

* **wnfs-nameaccumulator:** Initial release at 0.1.23 ([eb17ea2](https://github.com/wnfs-wg/rs-wnfs/commit/eb17ea2fa03e248a189cb8db04a033ef542f26db))

## [0.1.22](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-common-v0.1.21...wnfs-common-v0.1.22) (2023-06-23)


Expand Down
2 changes: 1 addition & 1 deletion wnfs-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wnfs-common"
version = "0.1.22"
version = "0.1.23"
description = "Common types for the Webnative Filesystem"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down
22 changes: 22 additions & 0 deletions wnfs-hamt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@
* dev-dependencies
* wnfs-common bumped from 0.1.19 to 0.1.20

## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-hamt-v0.1.22...wnfs-hamt-v0.1.23) (2023-07-21)


### Features

* Switch from Namefilter to Name Accumulators ([#247](https://github.com/wnfs-wg/rs-wnfs/issues/247)) ([7026a37](https://github.com/wnfs-wg/rs-wnfs/commit/7026a379443038fa1b0410df1c7d0bc23649f17a))
* Switch from SHA3-256 to BLAKE3-256 ([#306](https://github.com/wnfs-wg/rs-wnfs/issues/306)) ([e164a1f](https://github.com/wnfs-wg/rs-wnfs/commit/e164a1fc80c30d9446404a61b05fd995d7d88c0e))


### Miscellaneous Chores

* **wnfs-nameaccumulator:** Initial release at 0.1.23 ([eb17ea2](https://github.com/wnfs-wg/rs-wnfs/commit/eb17ea2fa03e248a189cb8db04a033ef542f26db))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* wnfs-common bumped from 0.1.22 to 0.1.23
* dev-dependencies
* wnfs-common bumped from 0.1.22 to 0.1.23

## [0.1.22](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-hamt-v0.1.21...wnfs-hamt-v0.1.22) (2023-06-23)


Expand Down
6 changes: 3 additions & 3 deletions wnfs-hamt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wnfs-hamt"
version = "0.1.22"
version = "0.1.23"
description = "IPLD HAMT implementation for Webnative Filesystem"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down Expand Up @@ -35,14 +35,14 @@ rand_core = "0.6"
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["rc"] }
thiserror = "1.0"
wnfs-common = { path = "../wnfs-common", version = "0.1.22" }
wnfs-common = { path = "../wnfs-common", version = "0.1.23" }

[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.22", features = ["test_utils"] }
wnfs-common = { path = "../wnfs-common", version = "0.1.23", features = ["test_utils"] }

[features]
test_utils = ["proptest"]
19 changes: 19 additions & 0 deletions wnfs-nameaccumulator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-nameaccumulator-v0.1.22...wnfs-nameaccumulator-v0.1.23) (2023-07-21)


### Features

* **api:** adds missing metadata functions for the private side ([#146](https://github.com/wnfs-wg/rs-wnfs/issues/146)) ([88e9f19](https://github.com/wnfs-wg/rs-wnfs/commit/88e9f19a69fbbb99e3ee78c831eeb520a33f0b46))
* Switch from Namefilter to Name Accumulators ([#247](https://github.com/wnfs-wg/rs-wnfs/issues/247)) ([7026a37](https://github.com/wnfs-wg/rs-wnfs/commit/7026a379443038fa1b0410df1c7d0bc23649f17a))
* Switch from SHA3-256 to BLAKE3-256 ([#306](https://github.com/wnfs-wg/rs-wnfs/issues/306)) ([e164a1f](https://github.com/wnfs-wg/rs-wnfs/commit/e164a1fc80c30d9446404a61b05fd995d7d88c0e))


### Miscellaneous Chores

* release 0.1.10 ([#114](https://github.com/wnfs-wg/rs-wnfs/issues/114)) ([9cbc320](https://github.com/wnfs-wg/rs-wnfs/commit/9cbc32076d80a5b7d3138ea891180c689411123f))
* release 0.1.16 ([#178](https://github.com/wnfs-wg/rs-wnfs/issues/178)) ([89e4d36](https://github.com/wnfs-wg/rs-wnfs/commit/89e4d36dc9b27ec1ab67db6fc214670efe768f32))
* release 0.1.19 ([1f37ec4](https://github.com/wnfs-wg/rs-wnfs/commit/1f37ec4d706b9bcb4305128451cc77063b4f211d))
* release 0.1.21 ([#255](https://github.com/wnfs-wg/rs-wnfs/issues/255)) ([2be9f49](https://github.com/wnfs-wg/rs-wnfs/commit/2be9f4999d279acccfcda3b690d69dcbcdf8e60b))
* **wnfs-nameaccumulator:** Initial release at 0.1.23 ([eb17ea2](https://github.com/wnfs-wg/rs-wnfs/commit/eb17ea2fa03e248a189cb8db04a033ef542f26db))
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.22"
version = "0.1.23"
description = "Cryptographic accumulators for the Webnative Filesystem"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down
23 changes: 23 additions & 0 deletions wnfs-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,29 @@
* dependencies
* wnfs bumped from 0.1.19 to 0.1.20

## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-wasm-v0.1.22...wnfs-wasm-v0.1.23) (2023-07-21)


### Features

* expose AccessKey encode/decode api ([#296](https://github.com/wnfs-wg/rs-wnfs/issues/296)) ([982feff](https://github.com/wnfs-wg/rs-wnfs/commit/982feff849a3f42bb859636a68324b3c6a550a91))
* Switch from AES-GCM to XChaCha20-Poly1305 ([#305](https://github.com/wnfs-wg/rs-wnfs/issues/305)) ([c17f6bb](https://github.com/wnfs-wg/rs-wnfs/commit/c17f6bb5bc9369d94d1c57cfa66c6cc2adf8174b))
* Switch from Namefilter to Name Accumulators ([#247](https://github.com/wnfs-wg/rs-wnfs/issues/247)) ([7026a37](https://github.com/wnfs-wg/rs-wnfs/commit/7026a379443038fa1b0410df1c7d0bc23649f17a))
* Switch from SHA3-256 to BLAKE3-256 ([#306](https://github.com/wnfs-wg/rs-wnfs/issues/306)) ([e164a1f](https://github.com/wnfs-wg/rs-wnfs/commit/e164a1fc80c30d9446404a61b05fd995d7d88c0e))


### Miscellaneous Chores

* **wnfs-nameaccumulator:** Initial release at 0.1.23 ([eb17ea2](https://github.com/wnfs-wg/rs-wnfs/commit/eb17ea2fa03e248a189cb8db04a033ef542f26db))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* wnfs bumped from 0.1.22 to 0.1.23
* wnfs-nameaccumulator bumped from 0.1.22 to 0.1.23

## [0.1.22](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-wasm-v0.1.21...wnfs-wasm-v0.1.22) (2023-06-23)


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.22"
version = "0.1.23"
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.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.22" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.22" }
wnfs = { path = "../wnfs", version = "0.1.23" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.23" }

[dev-dependencies]
wasm-bindgen-test = "0.3"
Expand Down
24 changes: 24 additions & 0 deletions wnfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [0.1.23](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.22...wnfs-v0.1.23) (2023-07-21)


### Features

* expose AccessKey encode/decode api ([#296](https://github.com/wnfs-wg/rs-wnfs/issues/296)) ([982feff](https://github.com/wnfs-wg/rs-wnfs/commit/982feff849a3f42bb859636a68324b3c6a550a91))
* Switch from AES-GCM to XChaCha20-Poly1305 ([#305](https://github.com/wnfs-wg/rs-wnfs/issues/305)) ([c17f6bb](https://github.com/wnfs-wg/rs-wnfs/commit/c17f6bb5bc9369d94d1c57cfa66c6cc2adf8174b))
* Switch from Namefilter to Name Accumulators ([#247](https://github.com/wnfs-wg/rs-wnfs/issues/247)) ([7026a37](https://github.com/wnfs-wg/rs-wnfs/commit/7026a379443038fa1b0410df1c7d0bc23649f17a))
* Switch from SHA3-256 to BLAKE3-256 ([#306](https://github.com/wnfs-wg/rs-wnfs/issues/306)) ([e164a1f](https://github.com/wnfs-wg/rs-wnfs/commit/e164a1fc80c30d9446404a61b05fd995d7d88c0e))


### Miscellaneous Chores

* **wnfs-nameaccumulator:** Initial release at 0.1.23 ([eb17ea2](https://github.com/wnfs-wg/rs-wnfs/commit/eb17ea2fa03e248a189cb8db04a033ef542f26db))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* wnfs-common bumped from 0.1.22 to 0.1.23
* wnfs-hamt bumped from 0.1.22 to 0.1.23
* wnfs-nameaccumulator bumped from 0.1.22 to 0.1.23

## [0.1.22](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.21...wnfs-v0.1.22) (2023-06-23)


Expand Down
8 changes: 4 additions & 4 deletions wnfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wnfs"
version = "0.1.22"
version = "0.1.23"
description = "WebNative filesystem core implementation"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down Expand Up @@ -38,9 +38,9 @@ serde = { version = "1.0", features = ["rc"] }
serde_ipld_dagcbor = "0.4.0"
skip_ratchet = { version = "0.3.0", features = ["serde"] }
thiserror = "1.0"
wnfs-common = { path = "../wnfs-common", version = "0.1.22" }
wnfs-hamt = { path = "../wnfs-hamt", version = "0.1.22" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.22" }
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" }

[dev-dependencies]
async-std = { version = "1.11", features = ["attributes"] }
Expand Down

0 comments on commit cfb0783

Please sign in to comment.