diff --git a/wnfs-wasm/CHANGELOG.md b/wnfs-wasm/CHANGELOG.md index ebb8a6d4..b889ebc9 100644 --- a/wnfs-wasm/CHANGELOG.md +++ b/wnfs-wasm/CHANGELOG.md @@ -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 diff --git a/wnfs-wasm/Cargo.toml b/wnfs-wasm/Cargo.toml index fa9885f8..1d369ce9 100644 --- a/wnfs-wasm/Cargo.toml +++ b/wnfs-wasm/Cargo.toml @@ -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 = [ @@ -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] diff --git a/wnfs-wasm/package.json b/wnfs-wasm/package.json index 46866bc8..70b8ee77 100644 --- a/wnfs-wasm/package.json +++ b/wnfs-wasm/package.json @@ -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": { diff --git a/wnfs/CHANGELOG.md b/wnfs/CHANGELOG.md index 2c88a559..d30f4266 100644 --- a/wnfs/CHANGELOG.md +++ b/wnfs/CHANGELOG.md @@ -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 diff --git a/wnfs/Cargo.toml b/wnfs/Cargo.toml index 258b4989..15326588 100644 --- a/wnfs/Cargo.toml +++ b/wnfs/Cargo.toml @@ -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 = [