Skip to content

Commit

Permalink
chore: Remove release please & bump versions (#347)
Browse files Browse the repository at this point in the history
* chore: Remove release please & bump versions

* refactor: Use version-fixed dependencies between workspace crates

* chore: Write wnfs-hamt changelog
  • Loading branch information
matheus23 authored Sep 10, 2023
1 parent b06fc4c commit 6111cf2
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 174 deletions.
138 changes: 0 additions & 138 deletions .github/workflows/release.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .release-please-manifest.json

This file was deleted.

14 changes: 0 additions & 14 deletions release-please-config.json

This file was deleted.

4 changes: 4 additions & 0 deletions wnfs-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.25 (2023-09-04)

* Small documentation improvements

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


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.24"
version = "0.1.25"
description = "Common types for the Webnative Filesystem"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down
9 changes: 4 additions & 5 deletions wnfs-hamt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# Changelog

* The following workspace dependencies were updated
* dependencies
* wnfs-common bumped from 0.1.19 to 0.1.20
* dev-dependencies
* wnfs-common bumped from 0.1.19 to 0.1.20
## 0.1.25 (2023-09-04)

* Fixed a bug causing dropped updates when doing serialization, then continuing writes, then serializing again and loading from that serialized state [#348](https://github.com/wnfs-wg/rs-wnfs/pull/348)
* Dependency wnfs-common bumped from 0.1.24 to 0.1.25

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

Expand Down
4 changes: 2 additions & 2 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.24"
version = "0.1.25"
description = "IPLD HAMT implementation for Webnative Filesystem"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down Expand Up @@ -37,7 +37,7 @@ semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["rc"] }
serde-byte-array = "0.1.2"
thiserror = "1.0"
wnfs-common = { path = "../wnfs-common", version = "0.1.24" }
wnfs-common = { path = "../wnfs-common", version = "=0.1.25" }

[dev-dependencies]
async-std = { version = "1.11", features = ["attributes"] }
Expand Down
4 changes: 2 additions & 2 deletions wnfs-wasm/Cargo.toml
Original file line number Diff line number Diff line change
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.25" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.25" }
wnfs = { path = "../wnfs", version = "=0.1.26" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "=0.1.25" }

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

## 0.1.26 (2023-09-04)

* Added `PrivateForestContent` API for storing encrypted data in private file metadata
* Added `_rc` constructor variants
* Removed `Share` struct from the share API. We recommend using share and receive functions directly.
* Added some module documentation

## [0.1.25](https://github.com/wnfs-wg/rs-wnfs/compare/wnfs-v0.1.24...wnfs-v0.1.25) (2023-08-30)


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.25"
version = "0.1.26"
description = "WebNative filesystem core implementation"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down Expand Up @@ -43,9 +43,9 @@ serde_ipld_dagcbor = "0.4"
sha3 = "0.10"
skip_ratchet = { version = "0.3", features = ["serde"] }
thiserror = "1.0"
wnfs-common = { path = "../wnfs-common", version = "0.1.24" }
wnfs-hamt = { path = "../wnfs-hamt", version = "0.1.24" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.25" }
wnfs-common = { path = "../wnfs-common", version = "=0.1.25" }
wnfs-hamt = { path = "../wnfs-hamt", version = "=0.1.25" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "=0.1.25" }

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

0 comments on commit 6111cf2

Please sign in to comment.