Skip to content

Commit 2a49433

Browse files
authored
Release v0.2.4. (#329)
Signed-off-by: Piotr Sikora <code@piotrsikora.dev>
1 parent d16f183 commit 2a49433

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 <piotrsikora@google.com>"]
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
@@ -68,7 +68,7 @@ dependencies = [
6868

6969
[[package]]
7070
name = "proxy-wasm"
71-
version = "0.2.4-dev"
71+
version = "0.2.4"
7272
dependencies = [
7373
"hashbrown",
7474
"log",

bazel/cargo/remote/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ alias(
6868
)
6969

7070
alias(
71-
name = "proxy-wasm-0.2.4-dev",
72-
actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm",
71+
name = "proxy-wasm-0.2.4",
72+
actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm",
7373
tags = ["manual"],
7474
)
7575

7676
alias(
7777
name = "proxy-wasm",
78-
actual = "@crates_vendor__proxy-wasm-0.2.4-dev//:proxy_wasm",
78+
actual = "@crates_vendor__proxy-wasm-0.2.4//:proxy_wasm",
7979
tags = ["manual"],
8080
)

0 commit comments

Comments
 (0)