diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a48761..475c73b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ -## [Unreleased] +## [1.0.1] - 2022-04-06 ### Added +- Added SIMD support for `UpperHessenbergSchur`. This should accelerate + general eigen solvers such as `GenEigsSolver` - Added test code for `UpperHessenbergSchur` ### Changed -- Added SIMD support for `UpperHessenbergSchur`. This should accelerate - general eigen solvers such as `GenEigsSolver` - Fixed several bugs in the examples caused by the `const` keyword, reported by [@alexpghayes](https://github.com/alexpghayes) ([#135](https://github.com/yixuan/spectra/issues/135), diff --git a/CMakeLists.txt b/CMakeLists.txt index 560b3b7..8801572 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required (VERSION 3.5 FATAL_ERROR) -project (Spectra VERSION 1.0.0 LANGUAGES CXX) +project (Spectra VERSION 1.0.1 LANGUAGES CXX) # Make CMake look into the ./cmake/ folder for configuration files list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) diff --git a/doxygen/Doxyfile b/doxygen/Doxyfile index 1ee9746..808065b 100644 --- a/doxygen/Doxyfile +++ b/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "Spectra" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.0.0 +PROJECT_NUMBER = 1.0.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/include/Spectra/Util/Version.h b/include/Spectra/Util/Version.h index de035c3..0cde96a 100644 --- a/include/Spectra/Util/Version.h +++ b/include/Spectra/Util/Version.h @@ -9,7 +9,7 @@ #define SPECTRA_MAJOR_VERSION 1 #define SPECTRA_MINOR_VERSION 0 -#define SPECTRA_PATCH_VERSION 0 +#define SPECTRA_PATCH_VERSION 1 #define SPECTRA_VERSION (SPECTRA_MAJOR_VERSION * 10000 + SPECTRA_MINOR_VERSION * 100 + SPECTRA_PATCH_VERSION)