Skip to content

Commit f75c9fc

Browse files
committed
Release 0.7-2
1 parent 755efbb commit f75c9fc

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Upcoming Changes
22

3+
# 0.7-2
4+
5+
Deprecate `virtual_memory_page_size`; use `get_virtual_memory_page_size()` instead. (#132)
6+
7+
CMake improvements:
8+
9+
* Generate container node sizes using CMake, which makes cross-compiling easier (#129)
10+
* Set `CMAKE_RUNTIME_OUTPUT_DIRECTORY` properly to support shared libraries (#132)
11+
312
# 0.7-1
413

514
Just bugfixes:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(FOONATHAN_MEMORY)
99

1010
set(FOONATHAN_MEMORY_VERSION_MAJOR 0 CACHE STRING "major version of memory" FORCE)
1111
set(FOONATHAN_MEMORY_VERSION_MINOR 7 CACHE STRING "minor version of memory" FORCE)
12-
set(FOONATHAN_MEMORY_VERSION_PATCH 1 CACHE STRING "patch version of memory" FORCE)
12+
set(FOONATHAN_MEMORY_VERSION_PATCH 2 CACHE STRING "patch version of memory" FORCE)
1313
set(FOONATHAN_MEMORY_VERSION "${FOONATHAN_MEMORY_VERSION_MAJOR}.${FOONATHAN_MEMORY_VERSION_MINOR}.${FOONATHAN_MEMORY_VERSION_PATCH}"
1414
CACHE STRING "version of memory" FORCE)
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ To use an installed library:
179179
4. Call `find_package(foonathan_memory major.minor REQUIRED)` to find the library.
180180
181181
5. Call `target_link_libraries(your_target PUBLIC foonathan_memory)` to link to the library and setup all required options.
182-
182+
183183
See https://memory.foonathan.net/md_doc_installation.html for a detailed guide.
184184
185185
## Documentation

0 commit comments

Comments
 (0)