Skip to content

Commit

Permalink
chore: Remove release please & bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Sep 10, 2023
1 parent b06fc4c commit 15be8d0
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 171 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
8 changes: 3 additions & 5 deletions wnfs-hamt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# 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)

* 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
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
6 changes: 3 additions & 3 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,8 +43,8 @@ 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-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]
Expand Down

0 comments on commit 15be8d0

Please sign in to comment.