Skip to content

Commit

Permalink
prepare for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
yixuan committed Apr 6, 2022
1 parent 9695dcc commit bdd707b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions 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),
Expand Down
2 changes: 1 addition & 1 deletion 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)
Expand Down
2 changes: 1 addition & 1 deletion doxygen/Doxyfile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/Spectra/Util/Version.h
Expand Up @@ -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)

Expand Down

0 comments on commit bdd707b

Please sign in to comment.