Skip to content

Commit

Permalink
ready for 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Mar 5, 2024
1 parent b5e8c88 commit 8ec524b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ jobs:
cat > CMakeLists.txt <<EOF
cmake_minimum_required(VERSION 3.8)
project(hf++)
find_package(Libint2 2.8.1 REQUIRED)
find_package(Libint2 2.9.0 REQUIRED)
get_target_property(_l2_maxam Libint2::int2 Libint2_MAX_AM_ERI)
message("Libint2_MAX_AM_ERI \${_l2_maxam}")
find_package(Threads) # clang does not autolink threads even though we are using std::thread
Expand Down
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@

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

- 2024-03-04: 2.9.0
- PR #335: l->symbol map reuse + other misc improvements
- PR #334: bump Catch2 to 2.13.10 (HT @hrnagel)
- PR #333: can use modularized Boost, even if built as part of the project
- PR #331: add SOVERSION when building shared library only (HT @loriab)
- PR #329: increase Tenno function interpolation table to support L=9 4-c ERI
- PR #327: fix stochastic failures of tests/eri by reducing range of random shells parameters
- PR #281: auto-generator for DF basis (HT @kshitij-05)
- 2024-02-05: 2.8.2
- PR #324: addresses issues with 3eri derivatives + minor 3eri API safety improvements
- PR #322: update libtool to 2.4.7 + update config.{guess,sub} to 2024-01-01
Expand Down
2 changes: 1 addition & 1 deletion CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The literature citation for the present version in bibtex format is:
author = "E.~F.~Valeev",
title = "Libint: A library for the evaluation of molecular integrals of many-body operators over Gaussian functions",
howpublished = "http://libint.valeyev.net/",
note = "version 2.8.2",
note = "version 2.9.0",
year = 2024
}

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define([libint_mmm_version],[2.8.2])
define([libint_mmm_version],[2.9.0])
define([libint_buildid],[])
define([libint_so_version],[2:3:0])

Expand Down
4 changes: 2 additions & 2 deletions export/cmake/CMakeLists.txt.export
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ project(Libint LANGUAGES CXX C)

# Set Libint version ===================================================================================================
set(LIBINT_MAJOR_VERSION 2)
set(LIBINT_MINOR_VERSION 8)
set(LIBINT_MICRO_VERSION 2) # Sync this with python/CMakeLists.txt
set(LIBINT_MINOR_VERSION 9)
set(LIBINT_MICRO_VERSION 0) # Sync this with python/CMakeLists.txt
set(LIBINT_BUILDID )
set(LIBINT_VERSION "${LIBINT_MAJOR_VERSION}.${LIBINT_MINOR_VERSION}.${LIBINT_MICRO_VERSION}")
if (LIBINT_BUILDID)
Expand Down
2 changes: 1 addition & 1 deletion python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_policy(SET CMP0079 NEW)

if(NOT DEFINED LIBINT_VERSION)
# for indep bld of project(libint2-python), version not available from project(Libint2)
set(LIBINT_VERSION "2.8.2") # for version for setup.py from libtool+cmake
set(LIBINT_VERSION "2.9.0") # for version for setup.py from libtool+cmake
endif()

project(libint2-python)
Expand Down

0 comments on commit 8ec524b

Please sign in to comment.