Skip to content

Commit 1189af7

Browse files
authored
Bump version to 3.3.0 (#117)
- update mstore subproject to 0.2.0 - update multicharge subproject to 0.1.2
1 parent c8b952f commit 1189af7

11 files changed

Lines changed: 18 additions & 17 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.14)
1919
project(
2020
"dftd4"
2121
LANGUAGES "Fortran"
22-
VERSION "3.2.0"
22+
VERSION "3.3.0"
2323
DESCRIPTION "Generally Applicable Atomic-Charge Dependent London Dispersion Correction"
2424
)
2525

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,20 +177,21 @@ The communication with the Fortran API uses the `error_type` and `structure_type
177177
To use ``dftd4`` in Vasp the compatibility layer for the 2.5.x API has to be enable with ``-Dapi_v2=true`` (meson) or ``-DAPI_V2=ON`` (CMake).
178178
It is important to build ``dftd4`` with the same Fortran compiler you build Vasp with.
179179

180-
After you completed the installation of ``dftd4`, make sure it is findable by ``pkg-config``, you can check by running:
180+
After you completed the installation of ``dftd4``, make sure it is findable by ``pkg-config``, you can check by running:
181181

182182
```
183183
pkg-config --modversion dftd4
184184
```
185185

186-
If you ``dftd4`` installation is not findable, you have to update your environment variables.
186+
If your ``dftd4`` installation is not findable, you have to update your environment variables.
187187
One option is to provide a module file for your ``dftd4`` installation.
188-
The example module file below can be placed in your ``MODULEPATH`` to provide access to an installation in ``~/opt/dftd4/3.2.0``.
189-
Retry the above comment after loading the ``dftd4`` and adjust the module file until ``pkg-config`` finds your installation.
188+
The example module file below can be placed in your ``MODULEPATH`` to provide access to an installation in ``~/opt/dftd4/3.3.0``.
189+
Retry the above comment after loading the ``dftd4`` module and adjust the module file until ``pkg-config`` finds your installation.
190190

191191
```lua
192+
-- dftd4/3.3.0.lua
192193
local name = "dftd4"
193-
local version = "3.2.0"
194+
local version = "3.3.0"
194195
local prefix = pathJoin(os.getenv("HOME"), "opt", name, version)
195196
local libdir = "lib" -- or lib64
196197

fpm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "dftd4"
2-
version = "3.2.0"
2+
version = "3.3.0"
33
license = "LGPL-3.0-or-later"
44
maintainer = ["@awvwgk"]
55
author = ["Eike Caldeweyher", "Sebastian Ehlert", "Stefan Grimme"]

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
project(
1818
'dftd4',
1919
'fortran',
20-
version: '3.2.0',
20+
version: '3.3.0',
2121
license: 'LGPL-3.0-or-later',
2222
meson_version: '>=0.55',
2323
default_options: [
@@ -26,7 +26,7 @@ project(
2626
],
2727
)
2828
install = not (meson.is_subproject() and get_option('default_library') == 'static')
29-
has_cc = add_languages('c', required: get_option('api') or get_option('python'))
29+
has_cc = add_languages('c', required: get_option('api') or get_option('python'), native: false)
3030

3131
# General configuration information
3232
inc_dirs = []

python/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Now you are ready to use ``dftd4``, check if you can import it with
171171
>>> import dftd4
172172
>>> from dftd4.libdftd4 import get_api_version
173173
>>> get_api_version()
174-
'3.2.0'
174+
'3.3.0'
175175
176176
177177
Building the extension module

python/dftd4/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# make sure we have a CFFI available
1919
import cffi
2020

21-
__version__ = "3.2.0"
21+
__version__ = "3.3.0"

python/dftd4/libdftd4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
-------
2626
>>> from dftd4.libdftd4 import get_api_version
2727
>>> get_api_version()
28-
'3.2.0'
28+
'3.3.0'
2929
"""
3030

3131
try:

python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dftd4-python
3-
version = 3.2.0
3+
version = 3.3.0
44
desciption = Python API of the DFT-D4 project
55
long_desciption = file: README.rst
66
long_description_content_type = text/x-rst

src/dftd4/version.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ module dftd4_version
2424

2525

2626
!> String representation of the dftd4 version
27-
character(len=*), parameter :: dftd4_version_string = "3.2.0"
27+
character(len=*), parameter :: dftd4_version_string = "3.3.0"
2828

2929
!> Numeric representation of the dftd4 version
30-
integer, parameter :: dftd4_version_compact(3) = [3, 2, 0]
30+
integer, parameter :: dftd4_version_compact(3) = [3, 3, 0]
3131

3232

3333
contains

subprojects/mstore.wrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[wrap-git]
22
directory = mstore
33
url = https://github.com/grimme-lab/mstore
4-
revision = v0.1.2
4+
revision = v0.2.0

0 commit comments

Comments
 (0)