File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 33
44Following 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
Original file line number Diff line number Diff line change 1- define ( [ libint_mmm_version] ,[ 2.10.2 ] )
1+ define ( [ libint_mmm_version] ,[ 2.11.0 ] )
22define ( [ libint_buildid] ,[ ] )
33define ( [ libint_so_version] ,[ 2:3:0] )
44
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ project(Libint LANGUAGES CXX C)
77
88# Set Libint version ===================================================================================================
99set(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
1212set(LIBINT_BUILDID )
1313set(LIBINT_VERSION "${LIBINT_MAJOR_VERSION}.${LIBINT_MINOR_VERSION}.${LIBINT_MICRO_VERSION}")
1414if (LIBINT_BUILDID)
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ cmake_policy(SET CMP0079 NEW)
77
88if (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
1111endif ()
1212
1313project (libint2-python)
You can’t perform that action at this time.
0 commit comments