diff --git a/CMakeLists.txt b/CMakeLists.txt index 05d58539..533bab4e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.14) project( "s-dftd3" LANGUAGES "Fortran" - VERSION "1.2.1" + VERSION "1.3.0" DESCRIPTION "Simple reimplementation of the DFT-D3 dispersion model" ) diff --git a/fpm.toml b/fpm.toml index a9633221..063c53b5 100644 --- a/fpm.toml +++ b/fpm.toml @@ -1,5 +1,5 @@ name = "s-dftd3" -version = "1.2.1" +version = "1.3.0" license = "LGPL-3.0-or-later" maintainer = ["@awvwgk"] author = ["Sebastian Ehlert"] diff --git a/meson.build b/meson.build index 68d17725..cb796f59 100644 --- a/meson.build +++ b/meson.build @@ -17,7 +17,7 @@ project( 's-dftd3', 'fortran', - version: '1.2.1', + version: '1.3.0', license: 'LGPL-3.0-or-later', meson_version: '>=0.55,!=1.8.0', default_options: [ diff --git a/python/README.rst b/python/README.rst index 1eaf5898..738289df 100644 --- a/python/README.rst +++ b/python/README.rst @@ -220,9 +220,9 @@ Now you are ready to use ``dftd3``, check if you can import it with .. code:: python >>> import dftd3 - >>> from dftd3.libdftd3 import get_api_version + >>> from dftd3.library import get_api_version >>> get_api_version() - '1.2.1' + '1.3.0' Building the extension module diff --git a/python/dftd3/__init__.py b/python/dftd3/__init__.py index 706099e3..24e9d584 100644 --- a/python/dftd3/__init__.py +++ b/python/dftd3/__init__.py @@ -18,4 +18,4 @@ # make sure we have a CFFI available import cffi -__version__ = "1.2.1" +__version__ = "1.3.0" diff --git a/python/meson.build b/python/meson.build index 7379c1ce..6208b3b5 100644 --- a/python/meson.build +++ b/python/meson.build @@ -19,7 +19,7 @@ project( 'dftd3', 'c', - version: '1.2.1', + version: '1.3.0', license: 'LGPL-3.0-or-later', meson_version: '>=0.55,!=1.8.0', default_options: [ diff --git a/python/mesonpep517.toml b/python/mesonpep517.toml index ac49f9e2..a8c71415 100644 --- a/python/mesonpep517.toml +++ b/python/mesonpep517.toml @@ -9,7 +9,7 @@ build-backend = "mesonpy" [project] name = "dftd3" -version = "1.2.1" +version = "1.3.0" description = "Python API of the DFT-D3 project" readme = "README.rst" license.text = "LGPL-3.0-or-later" diff --git a/python/setup.cfg b/python/setup.cfg index 7c24dc7b..6b9efb30 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dftd3 -version = 1.2.1 +version = 1.3.0 desciption = Python API of the DFT-D3 project long_desciption = file: README.rst long_description_content_type = text/x-rst diff --git a/src/dftd3/version.f90 b/src/dftd3/version.f90 index 5860815e..d5b0267e 100644 --- a/src/dftd3/version.f90 +++ b/src/dftd3/version.f90 @@ -24,10 +24,10 @@ module dftd3_version !> String representation of the s-dftd3 version - character(len=*), parameter :: dftd3_version_string = "1.2.1" + character(len=*), parameter :: dftd3_version_string = "1.3.0" !> Numeric representation of the s-dftd3 version - integer, parameter :: dftd3_version_compact(3) = [1, 2, 1] + integer, parameter :: dftd3_version_compact(3) = [1, 3, 0] contains