Skip to content

Commit 691c511

Browse files
committed
*: bump 0.6.1
Signed-off-by: Mads Marquart <[email protected]>
1 parent 009e71f commit 691c511

File tree

7 files changed

+23
-12
lines changed

7 files changed

+23
-12
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 0.6.1 - 2025-10-15
2+
3+
- Fix compiler and clippy warnings (#105)
4+
- Add feature `disable_cache_oblivious` to jemallocator re-exports (#104)
5+
- Document `JEMALLOC_OVERRIDE` (#107)
6+
- Harden `strerror_r` function detection (#117)
7+
- Respect jobserver set by Cargo (#120)
8+
- Make unprefixed consistently override the system allocator (#109)
9+
- Adds new flag `override_allocator_on_supported_platforms`.
10+
- `cat` the entire `config.log` (#142)
11+
112
# 0.6.0 - 2024-07-14
213

314
- Fix build on riscv64gc-unknown-linux-musl (#67) (#75)

jemalloc-ctl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-jemalloc-ctl"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = [
55
"Steven Fackler <[email protected]>",
66
"Gonzalo Brito Gadeschi <[email protected]>",
@@ -26,12 +26,12 @@ is-it-maintained-open-issues = { repository = "tikv/jemallocator" }
2626
maintenance = { status = "actively-developed" }
2727

2828
[dependencies]
29-
tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.0" }
29+
tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.1" }
3030
libc = { version = "0.2", default-features = false }
3131
paste = "1"
3232

3333
[dev-dependencies]
34-
tikv-jemallocator = { path = "../jemallocator", version = "0.6.0" }
34+
tikv-jemallocator = { path = "../jemallocator", version = "0.6.1" }
3535

3636
[features]
3737
default = []

jemalloc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tikv-jemalloc-sys"
3-
version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3+
version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Gonzalo Brito Gadeschi <[email protected]>",

jemallocator-global/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tikv-jemallocator-global"
33
# Make sure to update the version in the readme as well:
4-
version = "0.6.0"
4+
version = "0.6.1"
55
authors = [
66
"Gonzalo Brito Gadeschi <[email protected]>",
77
"The TiKV Project Developers",
@@ -26,7 +26,7 @@ is-it-maintained-open-issues = { repository = "tikv/jemallocator" }
2626
maintenance = { status = "actively-developed" }
2727

2828
[dependencies]
29-
tikv-jemallocator = { version = "0.6.0", path = "../jemallocator", optional = true }
29+
tikv-jemallocator = { version = "0.6.1", path = "../jemallocator", optional = true }
3030
cfg-if = "0.1"
3131

3232
[features]
@@ -38,7 +38,7 @@ force_global_jemalloc = [ "tikv-jemallocator" ]
3838
# for a particular target, white-list the target explicitly here:
3939

4040
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies]
41-
tikv-jemallocator = { version = "0.6.0", path = "../jemallocator", optional = false }
41+
tikv-jemallocator = { version = "0.6.1", path = "../jemallocator", optional = false }
4242

4343
# FIXME: https://github.com/gnzlbg/jemallocator/issues/91
4444
# [target.'cfg(target_os = "windows")'.dependencies]

jemallocator-global/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add it as a dependency:
1111
```toml
1212
# Cargo.toml
1313
[dependencies]
14-
tikv-jemallocator-global = "0.6.0"
14+
tikv-jemallocator-global = "0.6.1"
1515
```
1616

1717
and `jemalloc` will be used as the `#[global_allocator]` on targets that support

jemallocator-global/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! ```toml
66
//! # Cargo.toml
77
//! [dependencies]
8-
//! jemallocator-global = "0.6.0"
8+
//! jemallocator-global = "0.6.1"
99
//! ```
1010
//!
1111
//! and `jemalloc` will be used as the `#[global_allocator]` on targets that

jemallocator/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tikv-jemallocator"
33
# Make sure to update the version in the README as well:
4-
version = "0.6.0"
4+
version = "0.6.1"
55
authors = [
66
"Alex Crichton <[email protected]>",
77
"Gonzalo Brito Gadeschi <[email protected]>",
@@ -37,12 +37,12 @@ name = "ffi"
3737
required-features = ["stats"]
3838

3939
[dependencies]
40-
tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.0", default-features = false }
40+
tikv-jemalloc-sys = { path = "../jemalloc-sys", version = "0.6.1", default-features = false }
4141
libc = { version = "^0.2.8", default-features = false }
4242

4343
[dev-dependencies]
4444
paste = "1"
45-
tikv-jemalloc-ctl = { path = "../jemalloc-ctl", version = "0.6.0" }
45+
tikv-jemalloc-ctl = { path = "../jemalloc-ctl", version = "0.6.1" }
4646

4747
[features]
4848
default = ["background_threads_runtime_support"]

0 commit comments

Comments
 (0)