Skip to content

Commit

Permalink
Release 0.7-3
Browse files Browse the repository at this point in the history
  • Loading branch information
foonathan committed Jan 11, 2023
1 parent f191eb0 commit 0f07757
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Upcoming Changes

# 0.7-3

CMake improvements:

* Increase the CMake minimum required version to 3.14 to reflect reality. (#147)
* Fixes to container node size generation using CMake on MacOS. (#138)
* Don't regenerate container node sizes when they already exist.

Bugfixes:

* Workaround a compiler bug in MSVC. (#146)
* Fix broken multi-threading configuration. (#142)
* Check initial block size for `memory_pool_collection` properly. (#148)
* Fix bug in `memory_block_stack::owns()`. (#151)

# 0.7-2

Deprecate `virtual_memory_page_size`; use `get_virtual_memory_page_size()` instead. (#132)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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 2 CACHE STRING "patch version of memory" FORCE)
set(FOONATHAN_MEMORY_VERSION_PATCH 3 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)

Expand Down

0 comments on commit 0f07757

Please sign in to comment.