Skip to content

Commit d9b9c7b

Browse files
authored
Release version 1.1.0 (#53)
1 parent 3d9f9d2 commit d9b9c7b

File tree

10 files changed

+11
-11
lines changed

10 files changed

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

doc/conf.py

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

88
project = "s-dftd3"
99
author = "Sebastian Ehlert"
10-
copyright = f"2019-2022, {author}"
10+
copyright = f"2019-2024, {author}"
1111

1212
version = dftd3.__version__
1313
release = version

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.0.0"
2+
version = "1.1.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.0.0',
20+
version: '1.1.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
@@ -222,7 +222,7 @@ Now you are ready to use ``dftd3``, check if you can import it with
222222
>>> import dftd3
223223
>>> from dftd3.libdftd3 import get_api_version
224224
>>> get_api_version()
225-
'1.0.0'
225+
'1.1.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.0.0"
21+
__version__ = "1.1.0"

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.0.0',
22+
version: '1.1.0',
2323
license: 'LGPL-3.0-or-later',
2424
meson_version: '>=0.55',
2525
default_options: [

python/mesonpep517.toml

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

55
[project]
66
name = "dftd3"
7-
version = "1.0.0"
7+
version = "1.1.0"
88
description = "Python API of the DFT-D3 project"
99
readme = "README.rst"
1010
license.text = "LGPL-3.0-or-later"

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

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

3232

3333
contains

0 commit comments

Comments
 (0)