From 4c1479e08714371f1ee577157335f49798b8d3aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Oct 2025 13:59:13 +0000 Subject: [PATCH] chore(mimalloc-safe): release v0.1.55 --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.toml | 6 +++--- libmimalloc-sys/CHANGELOG.md | 5 +++++ libmimalloc-sys/Cargo.toml | 2 +- 4 files changed, 30 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 959bba1..4bacf45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.55] - 2025-10-16 + +### Features + +- Add mimalloc v3 feature ([#40](https://github.com/napi-rs/mimalloc-safe/pull/40)) + +### Chore + +- Upgrade NAPI-RS to 3.0 stable ([#26](https://github.com/napi-rs/mimalloc-safe/pull/26)) +- *(deps)* Update dependency @napi-rs/cli to v3.0.4 ([#28](https://github.com/napi-rs/mimalloc-safe/pull/28)) +- *(deps)* Update dependency @napi-rs/cli to v3.1.3 ([#29](https://github.com/napi-rs/mimalloc-safe/pull/29)) +- *(deps)* Update dependency @napi-rs/cli to v3.1.4 ([#31](https://github.com/napi-rs/mimalloc-safe/pull/31)) +- *(deps)* Update actions/checkout action to v5 ([#30](https://github.com/napi-rs/mimalloc-safe/pull/30)) +- *(deps)* Update actions/setup-node action to v5 ([#34](https://github.com/napi-rs/mimalloc-safe/pull/34)) +- *(deps)* Update yarn to v4.9.4 ([#33](https://github.com/napi-rs/mimalloc-safe/pull/33)) +- *(deps)* Update dependency @napi-rs/cli to v3.1.5 ([#32](https://github.com/napi-rs/mimalloc-safe/pull/32)) +- *(deps)* Update dependency @napi-rs/cli to v3.2.0 ([#35](https://github.com/napi-rs/mimalloc-safe/pull/35)) +- *(deps)* Update yarn to v4.10.3 ([#36](https://github.com/napi-rs/mimalloc-safe/pull/36)) +- *(deps)* Update dependency @napi-rs/cli to v3.3.0 ([#37](https://github.com/napi-rs/mimalloc-safe/pull/37)) +- *(deps)* Update actions/setup-node action to v6 ([#39](https://github.com/napi-rs/mimalloc-safe/pull/39)) +- *(deps)* Update dependency @napi-rs/cli to v3.3.1 ([#38](https://github.com/napi-rs/mimalloc-safe/pull/38)) ## [0.1.54](https://github.com/napi-rs/mimalloc-safe/compare/mimalloc-safe-v0.1.53...mimalloc-safe-v0.1.54) - 2025-07-10 diff --git a/Cargo.toml b/Cargo.toml index a58d31d..387e15c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mimalloc-safe" -version = "0.1.54" +version = "0.1.55" authors = [ "Octavian Oncescu ", "Vincent Rouillé ", @@ -22,7 +22,7 @@ members = ["libmimalloc-sys", "libmimalloc-sys/sys-test", "example"] travis-ci = { repository = "purpleprotocol/mimalloc_rust" } [dependencies] -libmimalloc-sys2 = { path = "libmimalloc-sys", version = "0.1.50", default-features = false } +libmimalloc-sys2 = { path = "libmimalloc-sys", version = "0.1.51", default-features = false } [features] asm = ["libmimalloc-sys2/asm"] @@ -35,4 +35,4 @@ no_opt_arch = ["libmimalloc-sys2/no_opt_arch"] extended = ["libmimalloc-sys2/extended"] skip_collect_on_exit = ["libmimalloc-sys2/skip_collect_on_exit"] etw = ["libmimalloc-sys2/etw"] -v3 = ["libmimalloc-sys2/v3"] \ No newline at end of file +v3 = ["libmimalloc-sys2/v3"] diff --git a/libmimalloc-sys/CHANGELOG.md b/libmimalloc-sys/CHANGELOG.md index 3c52678..664b6c9 100644 --- a/libmimalloc-sys/CHANGELOG.md +++ b/libmimalloc-sys/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.51] - 2025-10-16 + +### Features + +- Add mimalloc v3 feature ([#40](https://github.com/napi-rs/mimalloc-safe/pull/40)) ## [0.1.50](https://github.com/napi-rs/mimalloc-safe/compare/libmimalloc-sys2-v0.1.49...libmimalloc-sys2-v0.1.50) - 2025-07-10 diff --git a/libmimalloc-sys/Cargo.toml b/libmimalloc-sys/Cargo.toml index 31898ec..32d5871 100644 --- a/libmimalloc-sys/Cargo.toml +++ b/libmimalloc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libmimalloc-sys2" -version = "0.1.50" +version = "0.1.51" authors = ["Octavian Oncescu ", "Long Yinan "] edition = "2018" repository = "https://github.com/napi-rs/mimalloc-safe/tree/master/libmimalloc-sys"