Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 2024.10.26 #69

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2024.10.26
- Added eigenvalue utilities (lae2, laev2, lasr).
- Refactor eigenvalue testers.
- Use std::hypot instead of lapy2, lapy3.
- Use to_lapack_int to convert int32 to int64.

2024.05.31
- Added shared library version (ABI version 1.0.0)
- Updated enum parameters to have `to_string`, `from_string`;
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 )

project(
lapackpp
VERSION 2024.05.31
VERSION 2024.10.26
LANGUAGES CXX
)

Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ LDFLAGS_clean = ${filter-out -fPIC, ${LDFLAGS}}

.PHONY: ${pkg}
${pkg}:
perl -pe "s'#VERSION'2024.05.31'; \
perl -pe "s'#VERSION'2024.10.26'; \
s'#PREFIX'${abs_prefix}'; \
s'#CXX\b'${CXX}'; \
s'#CXXFLAGS'${CXXFLAGS_clean}'; \
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/doxyfile.conf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PROJECT_NAME = "LAPACK++"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2024.05.31"
PROJECT_NUMBER = "2024.10.26"

# 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
4 changes: 2 additions & 2 deletions include/lapack.hh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#include "lapack/defines.h"

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2024.05.31
#define LAPACKPP_VERSION 20240531
// Version 2024.10.26
#define LAPACKPP_VERSION 20241026

namespace lapack {

Expand Down
Loading