From 3c878b75926b50c1811dced82ad15357a132f780 Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Wed, 12 Aug 2026 12:04:23 +0100 Subject: [PATCH] Prepare Rust crates for 0.7.5 release --- snmalloc-rs/CHANGELOG.md | 4 ++++ snmalloc-rs/Cargo.toml | 4 ++-- snmalloc-rs/README.md | 6 +++++- snmalloc-rs/snmalloc-sys/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/snmalloc-rs/CHANGELOG.md b/snmalloc-rs/CHANGELOG.md index 7a0eed4c7..83904e3ee 100644 --- a/snmalloc-rs/CHANGELOG.md +++ b/snmalloc-rs/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog +### 0.7.5 + +- Tracking upstream to match version 0.7.5. + ### 0.7.4 - Tracking upstream to match version 0.7.4. diff --git a/snmalloc-rs/Cargo.toml b/snmalloc-rs/Cargo.toml index 43048fc30..0c976710a 100644 --- a/snmalloc-rs/Cargo.toml +++ b/snmalloc-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snmalloc-rs" -version = "0.7.4" +version = "0.7.5" authors = ["schrodingerzhu "] edition = "2021" license = "MIT" @@ -13,7 +13,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -snmalloc-sys = { version = "0.7.4", path = "snmalloc-sys", default-features = false } +snmalloc-sys = { version = "0.7.5", path = "snmalloc-sys", default-features = false } [features] default = ["snmalloc-sys/build_cmake", "snmalloc-sys/usewait-on-address"] diff --git a/snmalloc-rs/README.md b/snmalloc-rs/README.md index c429d756b..9426805c4 100644 --- a/snmalloc-rs/README.md +++ b/snmalloc-rs/README.md @@ -56,7 +56,7 @@ To use `snmalloc-rs` add it as a dependency: ```toml # Cargo.toml [dependencies] -snmalloc-rs = "0.7.4" +snmalloc-rs = "0.7.5" ``` To set `SnMalloc` as the global allocator add this to your project: @@ -77,6 +77,10 @@ static ALLOC: snmalloc_rs::SnMalloc = snmalloc_rs::SnMalloc; ## Changelog +### 0.7.5 + +- Tracking upstream to match version 0.7.5. + ### 0.7.4 - Tracking upstream to match version 0.7.4. diff --git a/snmalloc-rs/snmalloc-sys/Cargo.toml b/snmalloc-rs/snmalloc-sys/Cargo.toml index 27ddc8b94..8b42cb492 100644 --- a/snmalloc-rs/snmalloc-sys/Cargo.toml +++ b/snmalloc-rs/snmalloc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snmalloc-sys" -version = "0.7.4" +version = "0.7.5" authors = ["schrodingerzhu "] edition = "2021" license = "MIT"