Skip to content

Commit a871496

Browse files
Update version numbers etc for v1.0.1
1 parent 6e0d26b commit a871496

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ set(DESCRIPTION "High Performance Combinatorics in C++ using vector instruction
2828
CACHE STRING "Project description.")
2929
set(VERSION_MAJOR 1 CACHE STRING "Project major version number.")
3030
set(VERSION_MINOR 0 CACHE STRING "Project minor version number.")
31-
set(VERSION_PATCH 0 CACHE STRING "Project patch version number.")
31+
set(VERSION_PATCH 1 CACHE STRING "Project patch version number.")
3232
mark_as_advanced(VERSION_MAJOR VERSION_MINOR VERSION_PATCH)
3333

3434
message(STATUS "**** Build type = ${CMAKE_BUILD_TYPE}")

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# HPCombi
2-
High Performance Combinatorics in C++ using vector instructions v1.0.0
2+
High Performance Combinatorics in C++ using vector instructions v1.0.1
33

44
HPCombi is a C++17 header-only library using the SSE and AVX instruction sets,
55
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
88
various compiler and architectures.
99

1010
HPCombi was initially designed using the SSE and AVX instruction sets, and did
11-
not work on machines without these instructions (such as ARM). From v1.0.0
11+
not work on machines without these instructions (such as ARM). From v1.0.1
1212
HPCombi supports processors with other instruction sets also, via
1313
[SIMD Everywhere][]. It might be the case that the greatest performance gains
1414
are achieved on processors supporting the SSE and AVX instruction sets, but the

0 commit comments

Comments
 (0)