From 274a2245d6dae3e4835930b4051a4cb2066adf5d Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Wed, 15 Oct 2025 07:19:56 +0200 Subject: [PATCH] jemalloc-sys/jemalloc-ctl/jemallocator: bump 0.6.1 Signed-off-by: Mads Marquart --- CHANGELOG.md | 11 +++++++++++ jemalloc-ctl/Cargo.toml | 6 +++--- jemalloc-sys/Cargo.toml | 2 +- jemallocator-global/Cargo.toml | 4 ++-- jemallocator/Cargo.toml | 6 +++--- 5 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e160b5d17..8c6cd1eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.6.1 - 2025-10-15 + +- Fix compiler and clippy warnings (#105) +- Add feature `disable_cache_oblivious` to jemallocator re-exports (#104) +- Document `JEMALLOC_OVERRIDE` (#107) +- Harden `strerror_r` function detection (#117) +- Respect jobserver set by Cargo (#120) +- Make unprefixed consistently override the system allocator (#109) + - Adds new Cargo feature `override_allocator_on_supported_platforms`. +- `cat` the entire `config.log` (#142) + # 0.6.0 - 2024-07-14 - Fix build on riscv64gc-unknown-linux-musl (#67) (#75) diff --git a/jemalloc-ctl/Cargo.toml b/jemalloc-ctl/Cargo.toml index a1e450c58..90a7ed8e1 100644 --- a/jemalloc-ctl/Cargo.toml +++ b/jemalloc-ctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tikv-jemalloc-ctl" -version = "0.6.0" +version = "0.6.1" authors = [ "Steven Fackler ", "Gonzalo Brito Gadeschi ", @@ -26,12 +26,12 @@ is-it-maintained-open-issues = { repository = "tikv/jemallocator" } maintenance = { status = "actively-developed" } [dependencies] -tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.0" } +tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.1" } libc = { version = "0.2", default-features = false } paste = "1" [dev-dependencies] -tikv-jemallocator = { path = "../jemallocator", version = "0.6.0" } +tikv-jemallocator = { path = "../jemallocator", version = "0.6.1" } [features] default = [] diff --git a/jemalloc-sys/Cargo.toml b/jemalloc-sys/Cargo.toml index a6c199818..6b3efc0a9 100644 --- a/jemalloc-sys/Cargo.toml +++ b/jemalloc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tikv-jemalloc-sys" -version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" +version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" authors = [ "Alex Crichton ", "Gonzalo Brito Gadeschi ", diff --git a/jemallocator-global/Cargo.toml b/jemallocator-global/Cargo.toml index 492f1f8fc..8838a62e9 100644 --- a/jemallocator-global/Cargo.toml +++ b/jemallocator-global/Cargo.toml @@ -26,7 +26,7 @@ is-it-maintained-open-issues = { repository = "tikv/jemallocator" } maintenance = { status = "actively-developed" } [dependencies] -tikv-jemallocator = { version = "0.6.0", path = "../jemallocator", optional = true } +tikv-jemallocator = { version = "0.6.1", path = "../jemallocator", optional = true } cfg-if = "0.1" [features] @@ -38,7 +38,7 @@ force_global_jemalloc = [ "tikv-jemallocator" ] # for a particular target, white-list the target explicitly here: [target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies] -tikv-jemallocator = { version = "0.6.0", path = "../jemallocator", optional = false } +tikv-jemallocator = { version = "0.6.1", path = "../jemallocator", optional = false } # FIXME: https://github.com/gnzlbg/jemallocator/issues/91 # [target.'cfg(target_os = "windows")'.dependencies] diff --git a/jemallocator/Cargo.toml b/jemallocator/Cargo.toml index 4a3844a44..a2d01df57 100644 --- a/jemallocator/Cargo.toml +++ b/jemallocator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tikv-jemallocator" # Make sure to update the version in the README as well: -version = "0.6.0" +version = "0.6.1" authors = [ "Alex Crichton ", "Gonzalo Brito Gadeschi ", @@ -37,12 +37,12 @@ name = "ffi" required-features = ["stats"] [dependencies] -tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.0", default-features = false } +tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.1", default-features = false } libc = { version = "^0.2.8", default-features = false } [dev-dependencies] paste = "1" -tikv-jemalloc-ctl = { path = "../jemalloc-ctl", version = "0.6.0" } +tikv-jemalloc-ctl = { path = "../jemalloc-ctl", version = "0.6.1" } [features] default = ["background_threads_runtime_support"]