From 19ab0759c7f053d88657c0eb86d879493f784d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Sun, 5 Sep 2021 19:18:55 +0200 Subject: [PATCH] Release 0.7-1 --- CHANGELOG.md | 11 +++++++++++ CMakeLists.txt | 2 +- README.md | 17 ++++++++++------- 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a7c090..f839637a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Upcoming Changes +# 0.7-1 + +Just bugfixes: + +* CMake: automatically link libatomic on platforms where that is necessary (#95) +* catch small block sizes of `memory_pool` (#113) +* fix buffer overflow in `memory_pool_collection`'s array allocation (#99) +* fix compatibility with Windows UWP (#102) +* fix computation of `memory_pool::min_block_size` (#110) +* fix debug assertion in free lists (#111) + # 0.7 BREAKING: Removed the use of the compatibility library to automatically generate macros and workaround for older compilers. diff --git a/CMakeLists.txt b/CMakeLists.txt index e765e39c..73de5ae2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ project(FOONATHAN_MEMORY) set(FOONATHAN_MEMORY_VERSION_MAJOR 0 CACHE STRING "major version of memory" FORCE) set(FOONATHAN_MEMORY_VERSION_MINOR 7 CACHE STRING "minor version of memory" FORCE) -set(FOONATHAN_MEMORY_VERSION_PATCH 0 CACHE STRING "patch version of memory" FORCE) +set(FOONATHAN_MEMORY_VERSION_PATCH 1 CACHE STRING "patch version of memory" FORCE) set(FOONATHAN_MEMORY_VERSION "${FOONATHAN_MEMORY_VERSION_MAJOR}.${FOONATHAN_MEMORY_VERSION_MINOR}.${FOONATHAN_MEMORY_VERSION_PATCH}" CACHE STRING "version of memory" FORCE) diff --git a/README.md b/README.md index 78f155df..a62914ea 100644 --- a/README.md +++ b/README.md @@ -221,26 +221,29 @@ In particular thanks to the individual supporters: And big thanks to the contributors as well: +* @Guekka +* @Manu343726 +* @MiguelCompany * @asobhy-qnx * @bfierz -* @nicolastagliani * @cho3 +* @gabyx * @j-carl -* @myd7349 -* @moazzamak -* @maksqwe * @kaidokert -* @gabyx * @maksqwe -* @Manu343726 -* @MiguelCompany +* @maksqwe * @moazzamak +* @moazzamak +* @myd7349 * @myd7349 +* @nicolastagliani * @quattrinili * @razr +* @roehling * @seanyen * @wtsnyder * @zhouchengming1 +* @jwdevel [EASTL]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2271.html [CMake]: www.cmake.org