Skip to content

Commit 3425201

Browse files
authored
Release version 1.2.1 (#118)
1 parent 85edbc3 commit 3425201

File tree

11 files changed

+11
-18
lines changed

11 files changed

+11
-18
lines changed

.github/workflows/wheel.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,6 @@ jobs:
144144
mkdir dist/
145145
cp -v dftd3*/dftd3*.whl dftd3*/dftd3*.tar.gz dist/
146146
147-
- name: Publish to Test PyPI
148-
if: ${{ github.event_name == 'release' }}
149-
uses: pypa/gh-action-pypi-publish@release/v1
150-
with:
151-
user: __token__
152-
password: ${{ secrets.TEST_PYPI_TOKEN }}
153-
repository_url: https://test.pypi.org/legacy/
154-
155147
- name: Upload assets
156148
uses: svenstaro/upload-release-action@v2
157149
if: ${{ github.event_name == 'release' }}

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Latest Version](https://img.shields.io/github/v/release/dftd3/simple-dftd3)](https://github.com/dftd3/simple-dftd3/releases/latest)
44
[![LGPL-3.0-or-later](https://img.shields.io/github/license/dftd3/simple-dftd3)](COPYING)
5+
[![JOSS](https://joss.theoj.org/papers/1a0f4b4571b8a362d596bd5759572d7f/status.svg)](https://joss.theoj.org/papers/1a0f4b4571b8a362d596bd5759572d7f)
56
[![CI](https://github.com/dftd3/simple-dftd3/workflows/CI/badge.svg)](https://github.com/dftd3/simple-dftd3/actions)
67
[![Documentation](https://readthedocs.org/projects/dftd3/badge/?version=latest)](https://dftd3.readthedocs.io/en/latest/)
78
[![docs](https://github.com/dftd3/simple-dftd3/actions/workflows/docs.yml/badge.svg)](https://dftd3.github.io/simple-dftd3/)

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.2.0"
2+
version = "1.2.1"
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.2.0',
20+
version: '1.2.1',
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.2.0'
225+
'1.2.1'
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.2.0"
21+
__version__ = "1.2.1"

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.1.1',
22+
version: '1.2.1',
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.2.0"
7+
version = "1.2.1"
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.2.0
3+
version = 1.2.1
44
desciption = Python API of the DFT-D3 project
55
long_desciption = file: README.rst
66
long_description_content_type = text/x-rst

0 commit comments

Comments
 (0)