Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 1.1.0 #53

Merged
merged 1 commit into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 "1.0.0"
VERSION "1.1.0"
DESCRIPTION "Simple reimplementation of the DFT-D3 dispersion model"
)

Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

project = "s-dftd3"
author = "Sebastian Ehlert"
copyright = f"2019-2022, {author}"
copyright = f"2019-2024, {author}"

version = dftd3.__version__
release = version
Expand Down
2 changes: 1 addition & 1 deletion fpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "s-dftd3"
version = "1.0.0"
version = "1.1.0"
license = "LGPL-3.0-or-later"
maintainer = ["@awvwgk"]
author = ["Sebastian Ehlert"]
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: '1.0.0',
version: '1.1.0',
license: 'LGPL-3.0-or-later',
meson_version: '>=0.55',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion python/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ Now you are ready to use ``dftd3``, check if you can import it with
>>> import dftd3
>>> from dftd3.libdftd3 import get_api_version
>>> get_api_version()
'1.0.0'
'1.1.0'


Building the extension module
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__ = "1.0.0"
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion python/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
project(
'dftd3',
'c',
version: '1.0.0',
version: '1.1.0',
license: 'LGPL-3.0-or-later',
meson_version: '>=0.55',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion python/mesonpep517.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "mesonpy"

[project]
name = "dftd3"
version = "1.0.0"
version = "1.1.0"
description = "Python API of the DFT-D3 project"
readme = "README.rst"
license.text = "LGPL-3.0-or-later"
Expand Down
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
version = 1.0.0
version = 1.1.0
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 = "1.0.0"
character(len=*), parameter :: dftd3_version_string = "1.1.0"

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


contains
Expand Down
Loading