Skip to content

Commit

Permalink
Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk committed Jun 21, 2021
1 parent c667b05 commit 246b680
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.14)
project(
"s-dftd3"
LANGUAGES "Fortran"
VERSION "0.4.0"
VERSION "0.4.1"
DESCRIPTION "Simple reimplementation of the DFT-D3 dispersion model"
)

Expand Down
6 changes: 3 additions & 3 deletions fpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "s-dftd3"
version = "0.3.0"
version = "0.4.1"
license = "LGPL-3.0-or-later"
maintainer = ["@awvwgk"]
author = ["Sebastian Ehlert"]
Expand All @@ -10,12 +10,12 @@ keywords = ["dispersion-correction", "quantum-chemistry"]
[dependencies]
[dependencies.mctc-lib]
git = "https://github.com/grimme-lab/mctc-lib"
tag = "v0.2.0"
tag = "v0.2.3"

[dev-dependencies]
[dev-dependencies.mstore]
git = "https://github.com/grimme-lab/mstore"
tag = "v0.1.1"
tag = "v0.1.2"

[build]
auto-tests = false
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
project(
's-dftd3',
'fortran',
version: '0.4.0',
version: '0.4.1',
license: 'LGPL-3.0-or-later',
meson_version: '>=0.53',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion python/dftd3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# make sure we have a CFFI available
import cffi

__version__ = "0.4.0"
__version__ = "0.4.1"
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dftd3-python
version = 0.4.0
version = 0.4.1
desciption = Python API of the DFT-D3 project
long_desciption = file: README.rst
long_description_content_type = text/x-rst
Expand Down
4 changes: 2 additions & 2 deletions src/dftd3/version.f90
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ module dftd3_version


!> String representation of the s-dftd3 version
character(len=*), parameter :: dftd3_version_string = "0.4.0"
character(len=*), parameter :: dftd3_version_string = "0.4.1"

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


contains
Expand Down

0 comments on commit 246b680

Please sign in to comment.