Skip to content

Commit a9e8051

Browse files
committed
Bump to version 0.5.0
1 parent 5642677 commit a9e8051

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
if: ${{ matrix.build == 'fpm' }}
135135
uses: fortran-lang/setup-fpm@v3
136136
with:
137-
fpm-version: 'v0.2.0'
137+
fpm-version: 'v0.3.0'
138138

139139
- name: Prepare for cache restore
140140
if: ${{ matrix.compiler == 'intel' }}

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ Now you are ready to use ``s-dftd3``.
5858

5959
To build this project from the source code in this repository you need to have
6060
a Fortran compiler supporting Fortran 2008 and one of the supported build systems:
61-
- [meson](https://mesonbuild.com) version 0.53 or newer, with
61+
- [meson](https://mesonbuild.com) version 0.55 or newer, with
6262
a build-system backend, *i.e.* [ninja](https://ninja-build.org) version 1.7 or newer
6363
- [cmake](https://cmake.org) version 3.14 or newer, with
6464
a build-system backend, *i.e.* [ninja](https://ninja-build.org) version 1.10 or newer
65-
- [fpm](https://github.com/fortran-lang/fpm) version 0.2.0 or newer
65+
- [fpm](https://github.com/fortran-lang/fpm) version 0.3.0 or newer
6666

6767
Meson is the primary build system and provides feature-complete functionality of this project.
6868
CMake and fpm support is available but the functionality of the project is limited.

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
project = "simple-dftd3"
1111
author = "Sebastian Ehlert"
12-
copyright = f"2019-2021, {author}"
12+
copyright = f"2019-2022, {author}"
1313

1414
# The short X.Y version
15-
version = "0.4.2"
15+
version = "0.5.3"
1616
# The full version, including alpha/beta/rc tags
1717
release = version
1818

fpm.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name = "s-dftd3"
2-
version = "0.4.2"
2+
version = "0.5.0"
33
license = "LGPL-3.0-or-later"
44
maintainer = ["@awvwgk"]
55
author = ["Sebastian Ehlert"]
6-
copyright = "2019-2021 Sebastian Ehlert"
6+
copyright = "2019-2022 Sebastian Ehlert"
77
description = "Simple reimplementation of the DFT-D3 method"
88
keywords = ["dispersion-correction", "quantum-chemistry"]
99

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.2',
20+
version: '0.5.0',
2121
license: 'LGPL-3.0-or-later',
2222
meson_version: '>=0.55',
2323
default_options: [

python/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Now you are ready to use ``dftd3``, check if you can import it with
9898
>>> import dftd3
9999
>>> from dftd3.libdftd3 import get_api_version
100100
>>> get_api_version()
101-
'0.4.2'
101+
'0.5.0'
102102
103103
104104
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__ = "0.4.2"
21+
__version__ = "0.5.0"

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.2
3+
version = 0.5.0
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.2"
27+
character(len=*), parameter :: dftd3_version_string = "0.5.0"
2828

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

3232

3333
contains

0 commit comments

Comments
 (0)