diff --git a/CMakeLists.txt b/CMakeLists.txt index ba95f55..dda3987 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ set(DESCRIPTION "High Performance Combinatorics in C++ using vector instruction CACHE STRING "Project description.") set(VERSION_MAJOR 1 CACHE STRING "Project major version number.") set(VERSION_MINOR 0 CACHE STRING "Project minor version number.") -set(VERSION_PATCH 0 CACHE STRING "Project patch version number.") +set(VERSION_PATCH 1 CACHE STRING "Project patch version number.") mark_as_advanced(VERSION_MAJOR VERSION_MINOR VERSION_PATCH) message(STATUS "**** Build type = ${CMAKE_BUILD_TYPE}") diff --git a/README.md b/README.md index d918ca6..034b66f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # HPCombi -High Performance Combinatorics in C++ using vector instructions v1.0.0 +High Performance Combinatorics in C++ using vector instructions v1.0.1 HPCombi is a C++17 header-only library using the SSE and AVX instruction sets, and some equivalents, for very fast manipulation of combinatorial objects such @@ -8,7 +8,7 @@ of this project is to implement various new algorithms and benchmark them on various compiler and architectures. HPCombi was initially designed using the SSE and AVX instruction sets, and did -not work on machines without these instructions (such as ARM). From v1.0.0 +not work on machines without these instructions (such as ARM). From v1.0.1 HPCombi supports processors with other instruction sets also, via [SIMD Everywhere][]. It might be the case that the greatest performance gains are achieved on processors supporting the SSE and AVX instruction sets, but the