Skip to content

Commit

Permalink
chore: Bump wnfs and wnfs-wasm versions to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Feb 28, 2024
1 parent 17c980c commit e54c6d2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions wnfs-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.2.1 (2023-02-28)

* Added `getSize` method to `PublicFile` and `PrivateFile`

## 0.2.0 (2024-02-15)

* Bumped minimal supported rust version to 1.75
Expand Down
4 changes: 2 additions & 2 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.2.0"
version = "0.2.1"
description = "WebNative Filesystem API (WebAssembly)"
keywords = ["wnfs", "wasm", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down Expand Up @@ -30,7 +30,7 @@ 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.2.0" }
wnfs = { path = "../wnfs", version = "=0.2.1" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "=0.2.0" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wnfs-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"The Fission Authors"
],
"description": "WebNative Filesystem API (WebAssembly)",
"version": "0.2.0",
"version": "0.2.1",
"license": "Apache-2.0",
"homepage": "https://fission.codes",
"repository": {
Expand Down
5 changes: 5 additions & 0 deletions wnfs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.2.1 (2023-02-28)

* Added `PublicFile::size` and `PrivateFile::size` functions
* Changed return type of `PrivateFile::get_size_upper_bound` to be `u64` instead of `usize`

## 0.2.0 (2024-02-15)

* Bumped minimal supported rust version to 1.75
Expand Down
2 changes: 1 addition & 1 deletion wnfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wnfs"
version = "0.2.0"
version = "0.2.1"
description = "WebNative filesystem core implementation"
keywords = ["wnfs", "webnative", "ipfs", "decentralisation"]
categories = [
Expand Down

0 comments on commit e54c6d2

Please sign in to comment.