Skip to content

Commit

Permalink
Release 0.7-2
Browse files Browse the repository at this point in the history
  • Loading branch information
foonathan committed Aug 1, 2022
1 parent 755efbb commit f75c9fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Upcoming Changes

# 0.7-2

Deprecate `virtual_memory_page_size`; use `get_virtual_memory_page_size()` instead. (#132)

CMake improvements:

* Generate container node sizes using CMake, which makes cross-compiling easier (#129)
* Set `CMAKE_RUNTIME_OUTPUT_DIRECTORY` properly to support shared libraries (#132)

# 0.7-1

Just bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 1 CACHE STRING "patch version of memory" FORCE)
set(FOONATHAN_MEMORY_VERSION_PATCH 2 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ To use an installed library:
4. Call `find_package(foonathan_memory major.minor REQUIRED)` to find the library.
5. Call `target_link_libraries(your_target PUBLIC foonathan_memory)` to link to the library and setup all required options.
See https://memory.foonathan.net/md_doc_installation.html for a detailed guide.
## Documentation
Expand Down

0 comments on commit f75c9fc

Please sign in to comment.