diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fd07d4c9f96e4af0abd78e3b3dceb4898c47f40b..a19c25395e49fd93d0eae037f79e696fa1f9f0b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,14 @@ Version 0.9.3 - Bug: ALL::Point.dist_plane(..) had a type bug. This manifestes with a cuda compiler even without explicit usage of the function. Fixed and added corresponding test. +- Add support for external voro++ +- Bug: fix race condition in parallel test execution +- Allow custom install locations in CMake via GNUINstallDirs and add so version +- Bug: removed unncessary recreation of internal communicators in STAGGERED and tensor +- Bug: offset minimum sizes are now considered in HISTOGRAM +- Feature: function to compute load efficiency +- Bug: Fixed wrong behavior when computing floor values of negative values +- several other small fixes and corrections Version 0.9.2 ************* diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e27e860b249f980b5db3beb4c11dd2ad6721206..a56d506dccbbf02ddc2d3c01ea88daff9f93c505 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ add_compile_options("$<$<AND:$<CONFIG:Debug>,$<COMPILE_LANGUAGE:C>,$<C_COMPILER_ add_compile_options("$<$<AND:$<CONFIG:Debug>,$<COMPILE_LANGUAGE:CXX>,$<CXX_COMPILER_ID:GNU>>:-Wall;-Wextra>") project(ALL - VERSION "0.9.2" + VERSION "0.9.3" DESCRIPTION "A Loadbalacing Library" HOMEPAGE_URL "http://slms.pages.jsc.fz-juelich.de/websites/all-website/") set(ALL_SOVERSION 0)