diff --git a/CHANGES b/CHANGES
index cbf61d3f2..e9d41fcf8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3,6 +3,12 @@
Following is a brief summary of changes made in each release of Libint.
+- 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
+ - PR #319: pylibint builds with latest setuptools (HT @loriab)
+ - PR #311: clang-format.sh uses bash to resolve #310 (HT @e-kwsm)
+ - detect Brew-installed GNU tar on MacOS
- 2023-12-19: 2.8.1
- PR #307: fixup progman dvi and html building
- PR #305: disable latex2html detection/use by default
diff --git a/CITATION b/CITATION
index 1142daf32..66ce72237 100644
--- a/CITATION
+++ b/CITATION
@@ -18,8 +18,8 @@ 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.0",
- year = 2022
+ note = "version 2.8.2",
+ year = 2024
}
Also, please include the scientific citations for the methods and basis
diff --git a/LICENSE b/LICENSE
index e8290d664..4ff8bca84 100644
--- a/LICENSE
+++ b/LICENSE
@@ -2,11 +2,11 @@ Libint - a library for the evaluation of molecular integrals of many-body operat
Copyright (C) 2004-2024 Edward F. Valeev
-Libint is free software. Most of the source code of the Libint compiler (code generator)
+Libint is free software. Most of the source code of Libint, the "Libint compiler" (code generator)
can be redistributed and/or modified under the terms of the GNU General Public License, version 3,
as published by the Free Software Foundation (see the accompanying file COPYING;
if you did not receive this file refer to ).
-The rest of Libint, including the generated source, can be distributed under
+The rest of Libint, including the generated source, ("Libint library") can be distributed under
the GNU Lesser General Public License, version 3, (see the file COPYING.LESSER,
or ). The applicable license is specified in each
source file. If not indicated, the applicable license is GNU LGPL, version 3 (not GPL).
diff --git a/configure.ac b/configure.ac
index fcafb3e4a..df08efb8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-define([libint_mmm_version],[2.8.1])
+define([libint_mmm_version],[2.8.2])
define([libint_buildid],[])
define([libint_so_version],[2:3:0])
diff --git a/export/cmake/CMakeLists.txt.export b/export/cmake/CMakeLists.txt.export
index b010798d2..8c2b78a43 100644
--- a/export/cmake/CMakeLists.txt.export
+++ b/export/cmake/CMakeLists.txt.export
@@ -8,7 +8,7 @@ project(Libint LANGUAGES CXX C)
# Set Libint version ===================================================================================================
set(LIBINT_MAJOR_VERSION 2)
set(LIBINT_MINOR_VERSION 8)
-set(LIBINT_MICRO_VERSION 1) # Sync this with python/CMakeLists.txt
+set(LIBINT_MICRO_VERSION 2) # Sync this with python/CMakeLists.txt
set(LIBINT_BUILDID )
set(LIBINT_VERSION "${LIBINT_MAJOR_VERSION}.${LIBINT_MINOR_VERSION}.${LIBINT_MICRO_VERSION}")
if (LIBINT_BUILDID)
diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt
index fa0aa85c9..c869c4855 100644
--- a/python/CMakeLists.txt
+++ b/python/CMakeLists.txt
@@ -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.1") # for version for setup.py from libtool+cmake
+ set(LIBINT_VERSION "2.8.2") # for version for setup.py from libtool+cmake
endif()
project(libint2-python)