Skip to content

Commit 6f0b06f

Browse files
authored
Update to version 1.4.0 (#184)
1 parent d188486 commit 6f0b06f

9 files changed

Lines changed: 10 additions & 10 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
"s-dftd3"
2121
LANGUAGES "Fortran"
22-
VERSION "1.3.2"
22+
VERSION "1.4.0"
2323
DESCRIPTION "Simple reimplementation of the DFT-D3 dispersion model"
2424
)
2525

fpm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "s-dftd3"
2-
version = "1.3.2"
2+
version = "1.4.0"
33
license = "LGPL-3.0-or-later"
44
maintainer = ["@awvwgk"]
55
author = ["Sebastian Ehlert"]

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
project(
1818
's-dftd3',
1919
'fortran',
20-
version: '1.3.2',
20+
version: '1.4.0',
2121
license: 'LGPL-3.0-or-later',
2222
meson_version: '>=0.55,!=1.8.0',
2323
default_options: [

python/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Now you are ready to use ``dftd3``, check if you can import it with
222222
>>> import dftd3
223223
>>> from dftd3.library import get_api_version
224224
>>> get_api_version()
225-
'1.3.2'
225+
'1.4.0'
226226
227227
228228
Building the extension module

python/dftd3/__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__ = "1.3.2"
21+
__version__ = "1.4.0"

python/ffibuilder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
if not pkgconfig.exists(library):
5858
raise ModuleNotFoundError("Unable to find pkg-config package 's-dftd3'")
59-
if pkgconfig.installed(library, "< 0.4"):
59+
if pkgconfig.installed(library, "< 1.4"):
6060
raise Exception(
6161
"Installed 's-dftd3' version is too old, 0.4 or newer is required"
6262
)

python/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project(
2020
'dftd3',
2121
'c',
22-
version: '1.3.2',
22+
version: '1.4.0',
2323
license: 'LGPL-3.0-or-later',
2424
meson_version: '>=0.55,!=1.8.0',
2525
default_options: [

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "mesonpy"
99

1010
[project]
1111
name = "dftd3"
12-
version = "1.3.2"
12+
version = "1.4.0"
1313
description = "Python API of the DFT-D3 project"
1414
readme = "README.rst"
1515
license.text = "LGPL-3.0-or-later"

src/dftd3/version.f90

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

2525

2626
!> String representation of the s-dftd3 version
27-
character(len=*), parameter :: dftd3_version_string = "1.3.2"
27+
character(len=*), parameter :: dftd3_version_string = "1.4.0"
2828

2929
!> Numeric representation of the s-dftd3 version
30-
integer, parameter :: dftd3_version_compact(3) = [1, 3, 2]
30+
integer, parameter :: dftd3_version_compact(3) = [1, 4, 0]
3131

3232

3333
contains

0 commit comments

Comments
 (0)