Skip to content

Commit 6d3c860

Browse files
committed
update readme for upcoming release
1 parent 82b6786 commit 6d3c860

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

readme.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ is a general purpose allocator with excellent [performance](#performance) charac
1212
Initially developed by Daan Leijen for the runtime systems of the
1313
[Koka](https://koka-lang.github.io) and [Lean](https://github.com/leanprover/lean) languages.
1414

15-
Latest release : `v3.0.3` (beta) (2025-03-28).
16-
Latest v2 release: `v2.2.3` (2025-03-28).
17-
Latest v1 release: `v1.9.3` (2024-03-28).
15+
Latest release : `v3.1.4` (beta) (2025-06-09).
16+
Latest v2 release: `v2.2.4` (2025-06-09).
17+
Latest v1 release: `v1.9.4` (2024-06-09).
1818

1919
mimalloc is a drop-in replacement for `malloc` and can be used in other programs
2020
without code changes, for example, on dynamically linked ELF-based systems (Linux, BSD, etc.) you can use it as:
@@ -77,12 +77,16 @@ Enjoy!
7777
* `dev2`: development branch for mimalloc v2. This branch is downstream of `dev`
7878
(and is essentially equal to `dev` except for `src/segment.c`). Uses larger sliced segments to manage
7979
mimalloc pages that can reduce fragmentation.
80-
* `dev3`: development branch for mimalloc v3-beta. This branch is downstream of `dev`. This version
81-
simplifies the lock-free ownership of previous versions, has no thread-local segments any more.
82-
This improves sharing of memory between threads, and on certain large workloads may use (much) less memory.
80+
* `dev3`: development branch for mimalloc v3 beta. This branch is downstream of `dev`. This version
81+
simplifies the lock-free ownership of previous versions, and improves sharing of memory between
82+
threads. On certain large workloads this version may use (much) less memory.
8383

8484
### Releases
8585

86+
* 2025-06-09, `v1.9.4`, `v2.2.4`, `v3.1.4` (beta) : Some important bug fixes, including a case where OS memory
87+
was not always fully released. Improved v3 performance, build on XBox, fix build on Android, support interpose
88+
for older macOS versions, use MADV_FREE_REUSABLE on macOS, always check commit success, better support for Windows
89+
fixed TLS offset, etc.
8690
* 2025-03-28, `v1.9.3`, `v2.2.3`, `v3.0.3` (beta) : Various small bug and build fixes, including:
8791
fix arm32 pre v7 builds, fix mingw build, get runtime statistics, improve statistic commit counts,
8892
fix execution on non BMI1 x64 systems.

0 commit comments

Comments
 (0)