Skip to content

Commit

Permalink
version bump to 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Sep 19, 2021
1 parent a6c5110 commit 9869596
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
cat > CMakeLists.txt <<EOF
cmake_minimum_required(VERSION 3.8)
project(hf++)
find_package(Libint2 2.7.0 REQUIRED)
find_package(Libint2 2.7.1 REQUIRED)
find_package(Threads) # clang does not autolink threads even though we are using std::thread
add_executable(hf++ EXCLUDE_FROM_ALL $LIBINT_EXPORTED_DIR/tests/hartree-fock/hartree-fock++.cc)
target_link_libraries(hf++ Libint2::cxx Threads::Threads)
Expand Down
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

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

- 2021-xx-yy: 2.7.1
- 2021-09-19: 2.7.1
- PR 224: fixed tracking of shell-pair data
- PR 223: removed redundant const qualifier (HT @e-kwsm)
- issue 222: fixed compiler tree's install target
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.7.0",
note = "version 2.7.1",
year = 2021
}

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.7.0])
define([libint_mmm_version],[2.7.1])
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 @@ -5,7 +5,7 @@ project(Libint LANGUAGES CXX C)
# Set Libint version ===================================================================================================
set(LIBINT_MAJOR_VERSION 2)
set(LIBINT_MINOR_VERSION 7)
set(LIBINT_MICRO_VERSION 0)
set(LIBINT_MICRO_VERSION 1)
set(LIBINT_BUILDID "")
set(LIBINT_VERSION "${LIBINT_MAJOR_VERSION}.${LIBINT_MINOR_VERSION}.${LIBINT_MICRO_VERSION}")
if (LIBINT_BUILDID)
Expand Down

0 comments on commit 9869596

Please sign in to comment.