Skip to content

Commit 246b680

Browse files
committed
Bump version to 0.4.1
1 parent c667b05 commit 246b680

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

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 "0.4.0"
22+
VERSION "0.4.1"
2323
DESCRIPTION "Simple reimplementation of the DFT-D3 dispersion model"
2424
)
2525

fpm.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "s-dftd3"
2-
version = "0.3.0"
2+
version = "0.4.1"
33
license = "LGPL-3.0-or-later"
44
maintainer = ["@awvwgk"]
55
author = ["Sebastian Ehlert"]
@@ -10,12 +10,12 @@ keywords = ["dispersion-correction", "quantum-chemistry"]
1010
[dependencies]
1111
[dependencies.mctc-lib]
1212
git = "https://github.com/grimme-lab/mctc-lib"
13-
tag = "v0.2.0"
13+
tag = "v0.2.3"
1414

1515
[dev-dependencies]
1616
[dev-dependencies.mstore]
1717
git = "https://github.com/grimme-lab/mstore"
18-
tag = "v0.1.1"
18+
tag = "v0.1.2"
1919

2020
[build]
2121
auto-tests = false

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: '0.4.0',
20+
version: '0.4.1',
2121
license: 'LGPL-3.0-or-later',
2222
meson_version: '>=0.53',
2323
default_options: [

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__ = "0.4.0"
21+
__version__ = "0.4.1"

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 = dftd3-python
3-
version = 0.4.0
3+
version = 0.4.1
44
desciption = Python API of the DFT-D3 project
55
long_desciption = file: README.rst
66
long_description_content_type = text/x-rst

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 = "0.4.0"
27+
character(len=*), parameter :: dftd3_version_string = "0.4.1"
2828

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

3232

3333
contains

0 commit comments

Comments
 (0)