Skip to content

Commit 75d2680

Browse files
committed
Release v0.2.4.
Signed-off-by: Piotr Sikora <[email protected]>
1 parent d046df9 commit 75d2680

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [0.2.4] - 2025-10-01
8+
9+
### Fixed
10+
11+
- Fixed a memory leak in `get_map` and `get_map_bytes` hostcalls.
12+
This issue has been introduced in [0.2.3].
13+
Thanks [@JaatadiaMulesoft](https://github.com/JaatadiaMulesoft)!
14+
715
## [0.2.3] - 2025-06-04
816

917
### Changed
@@ -129,6 +137,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
129137
- Initial release.
130138

131139

140+
[0.2.4]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.3...v0.2.4
132141
[0.2.3]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.2...v0.2.3
133142
[0.2.2]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.1...v0.2.2
134143
[0.2.1]: https://github.com/proxy-wasm/proxy-wasm-rust-sdk/compare/v0.2.0...v0.2.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proxy-wasm"
3-
version = "0.2.4-dev"
3+
version = "0.2.4"
44
authors = ["Piotr Sikora <[email protected]>"]
55
rust-version = "1.65"
66
description = "WebAssembly for Proxies"

bazel/cargo/Cargo.Bazel.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
3939

4040
[[package]]
4141
name = "proxy-wasm"
42-
version = "0.2.4-dev"
42+
version = "0.2.4"
4343
dependencies = [
4444
"hashbrown",
4545
"log",

bazel/cargo/remote/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ alias(
5656
)
5757

5858
alias(
59-
name = "proxy-wasm-0.2.4-dev",
60-
actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm",
59+
name = "proxy-wasm-0.2.4",
60+
actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm",
6161
tags = ["manual"],
6262
)
6363

6464
alias(
6565
name = "proxy-wasm",
66-
actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm",
66+
actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm",
6767
tags = ["manual"],
6868
)

0 commit comments

Comments
 (0)