Skip to content

Commit f9b5fdb

Browse files
authored
Prepare release 2.1.1 (#147)
* Update changelog * Bump version in version_info.hpp * Bump version in xcfun.cmake * Bump version in conf.py
1 parent 305f4c8 commit f9b5fdb

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [Version 2.1.1] - 2020-11-12
44

5-
- Move Linux and macOS CI to GitHub actions.
5+
### Changed
6+
7+
- Linux and macOS continuous integration testing is run on GitHub actions. See [PR #145](https://github.com/dftlibs/xcfun/pull/145)
8+
9+
### Fixed
10+
11+
- We polished the installation of header files, CMake target export files, and Python module. These are especially relevant for Conda packaging XCFun. See [PR #143](https://github.com/dftlibs/xcfun/pull/143)
12+
- A numerical issue with SCAN functionals and small density gradients was fixed by James Furness (@JFurness1). See [issue #144](https://github.com/dftlibs/xcfun/issues/144) reported by Xing Zhang (@fishjojo) and subsequent [PR #146](https://github.com/dftlibs/xcfun/pull/146) for the fix.
613

714
## [Version 2.1.0] - 2020-09-18
815

@@ -130,6 +137,8 @@ modernize the library. See the [migration guide](https://xcfun.readthedocs.io/en
130137
- **BREAKING** The Fortran interface is no longer build with the code, but
131138
shipped as a separate file to be compiled within your own Fortran code.
132139

140+
[Unreleased]: https://github.com/dftlibs/xcfun/compare/v2.1.1...HEAD
141+
[Version 2.1.1]: https://github.com/dftlibs/xcfun/compare/v2.1.0...v2.1.1
133142
[Version 2.1.0]: https://github.com/dftlibs/xcfun/compare/v2.0.2...v2.1.0
134143
[Version 2.0.2]: https://github.com/dftlibs/xcfun/compare/v2.0.1...v2.0.2
135144
[Version 2.0.1]: https://github.com/dftlibs/xcfun/compare/v2.0.0...v2.0.1

cmake/custom/xcfun.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ if(DEFINED XCFUN_MAX_ORDER AND XCFUN_MAX_ORDER LESS 3)
2323
set(XCFUN_MAX_ORDER 6 CACHE STRING "Maximum order of derivatives of the exchange-correlation kernel" FORCE)
2424
endif()
2525

26-
set(PROJECT_VERSION 2.1.0)
26+
set(PROJECT_VERSION 2.1.1)
2727
set(PROJECT_VERSION_MAJOR 2)
2828
set(PROJECT_VERSION_MINOR 1)
29-
set(PROJECT_VERSION_PATCH 0)
29+
set(PROJECT_VERSION_PATCH 1)
3030

3131
add_subdirectory(${PROJECT_SOURCE_DIR}/api)
3232
add_subdirectory(${PROJECT_SOURCE_DIR}/src)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
author = 'Ulf Ekström and contributors'
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = '2.1.0'
28+
release = '2.1.1'
2929

3030
# -- General configuration ---------------------------------------------------
3131

src/version_info.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace xcfun {
1818
constexpr auto PROJECT_VERSION_MAJOR = 2;
1919
constexpr auto PROJECT_VERSION_MINOR = 1;
20-
constexpr auto PROJECT_VERSION_PATCH = 0;
20+
constexpr auto PROJECT_VERSION_PATCH = 1;
2121
constexpr auto XCFun_VERSION =
2222
((PROJECT_VERSION_MAJOR << 16) | PROJECT_VERSION_MINOR | PROJECT_VERSION_PATCH);
2323

0 commit comments

Comments
 (0)