From 8bc0f43f9e08574fc4fbf69e3b2c06c40f6fef17 Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Fri, 3 Jan 2025 18:18:05 -0800 Subject: [PATCH 1/2] fix link in readme --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 8babd549..61d14d55 100644 --- a/readme.md +++ b/readme.md @@ -12,7 +12,7 @@ is a general purpose allocator with excellent [performance](#performance) charac Initially developed by Daan Leijen for the runtime systems of the [Koka](https://koka-lang.github.io) and [Lean](https://github.com/leanprover/lean) languages. -Latest release tag: `v2.1.8` (2025-01-03). +Latest release tag: `v2.1.8` (2025-01-03). Latest v1 tag: `v1.8.8` (2024-01-03). mimalloc is a drop-in replacement for `malloc` and can be used in other programs @@ -81,7 +81,7 @@ Enjoy! ### Releases -* 2025-01-03, `v1.8.8`, `v2.1.8`, `v3.0-alpha`: Interim release. Support Windows arm64. New guarded build that can place OS +* 2025-01-03, `v1.8.8`, `v2.1.8`, `v3.0-alpha`: Interim release. Support Windows arm64. New [guarded](#guarded) build that can place OS guard pages behind objects to catch buffer overflows as they occur. Many small fixes: build on Windows arm64, cygwin, riscV, and dragonfly; fix Windows static library initialization to account for thread local destructors (in Rust/C++); macOS tag change; macOS TLS slot fix; improve stats; From 27687718bc645097728a2f1dc25ab6b2e59ceb6f Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Fri, 3 Jan 2025 18:44:23 -0800 Subject: [PATCH 2/2] bump version to 1.8.9 for further development --- cmake/mimalloc-config-version.cmake | 2 +- include/mimalloc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/mimalloc-config-version.cmake b/cmake/mimalloc-config-version.cmake index f92d52e6..49cc7660 100644 --- a/cmake/mimalloc-config-version.cmake +++ b/cmake/mimalloc-config-version.cmake @@ -1,6 +1,6 @@ set(mi_version_major 1) set(mi_version_minor 8) -set(mi_version_patch 8) +set(mi_version_patch 9) set(mi_version ${mi_version_major}.${mi_version_minor}) set(PACKAGE_VERSION ${mi_version}) diff --git a/include/mimalloc.h b/include/mimalloc.h index 95a76c2d..6d9eb4fc 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -8,7 +8,7 @@ terms of the MIT license. A copy of the license can be found in the file #ifndef MIMALLOC_H #define MIMALLOC_H -#define MI_MALLOC_VERSION 188 // major + 2 digits minor +#define MI_MALLOC_VERSION 189 // major + 2 digits minor // ------------------------------------------------------ // Compiler specific attributes