Skip to content

Commit

Permalink
ready for 2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Feb 5, 2024
1 parent c3ac892 commit 30b824a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://www.gnu.org/licenses/>).
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 <http://www.gnu.org/licenses/>). The applicable license is specified in each
source file. If not indicated, the applicable license is GNU LGPL, version 3 (not GPL).
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.1])
define([libint_mmm_version],[2.8.2])
define([libint_buildid],[])
define([libint_so_version],[2:3:0])

Expand Down
2 changes: 1 addition & 1 deletion export/cmake/CMakeLists.txt.export
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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.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)
Expand Down

0 comments on commit 30b824a

Please sign in to comment.