Skip to content

Commit d3dfe4d

Browse files
committed
ready for 2.11.0
1 parent 70d85df commit d3dfe4d

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ jobs:
334334
cat > CMakeLists.txt <<EOF
335335
cmake_minimum_required(VERSION 3.8)
336336
project(hf++)
337-
find_package(Libint2 2.10.2 REQUIRED)
337+
find_package(Libint2 2.11.0 REQUIRED)
338338
get_target_property(_l2_maxam Libint2::int2 Libint2_MAX_AM_ERI)
339339
message("Libint2_MAX_AM_ERI \${_l2_maxam}")
340340
find_package(Threads) # clang does not autolink threads even though we are using std::thread

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33

44
Following is a brief summary of changes made in each release of Libint.
55

6+
- 2025-04-24: 2.11.0
7+
- PR #364: fix eritest segfaults with atypical L combinations
8+
- PR #365: use Gaussian fit of Slater geminal for exceptional parameter values
9+
610
- 2025-04-08: 2.10.2
711
- PR #360: CMake targets can be consumed from the build tree (e.g., usable via FetchContent)
812

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
define([libint_mmm_version],[2.10.2])
1+
define([libint_mmm_version],[2.11.0])
22
define([libint_buildid],[])
33
define([libint_so_version],[2:3:0])
44

export/cmake/CMakeLists.txt.export

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ project(Libint LANGUAGES CXX C)
77

88
# Set Libint version ===================================================================================================
99
set(LIBINT_MAJOR_VERSION 2)
10-
set(LIBINT_MINOR_VERSION 10)
11-
set(LIBINT_MICRO_VERSION 2) # Sync this with python/CMakeLists.txt
10+
set(LIBINT_MINOR_VERSION 11)
11+
set(LIBINT_MICRO_VERSION 0) # Sync this with python/CMakeLists.txt
1212
set(LIBINT_BUILDID )
1313
set(LIBINT_VERSION "${LIBINT_MAJOR_VERSION}.${LIBINT_MINOR_VERSION}.${LIBINT_MICRO_VERSION}")
1414
if (LIBINT_BUILDID)

python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_policy(SET CMP0079 NEW)
77

88
if(NOT DEFINED LIBINT_VERSION)
99
# for indep bld of project(libint2-python), version not available from project(Libint2)
10-
set(LIBINT_VERSION "2.10.2") # for version for setup.py from libtool+cmake
10+
set(LIBINT_VERSION "2.11.0") # for version for setup.py from libtool+cmake
1111
endif()
1212

1313
project(libint2-python)

0 commit comments

Comments
 (0)