From 6f73a610d8d6907b29c150d1d8f6ca48aae94972 Mon Sep 17 00:00:00 2001 From: patrickfuchs Date: Thu, 20 Jan 2022 17:20:23 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.6.0=20=E2=86=92=201.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .zenodo.json | 2 +- CHANGELOG.md | 2 ++ buildh/__init__.py | 2 +- devtools/bumpversion.cfg | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 35ee1db..df3d6f1 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,5 +1,5 @@ { - "title": "buildH (v1.6.0): Build hydrogens from a united-atom MD of lipids and calculate the order parameter.", + "title": "buildH (v1.6.1): Build hydrogens from a united-atom MD of lipids and calculate the order parameter.", "creators": [{ "name": "Santuz, Hubert", "orcid": "0000-0001-6149-9480" diff --git a/CHANGELOG.md b/CHANGELOG.md index ca1407c..39c4205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ **Dev** +**1.6.1** + - Add option --ignore-CH3s (-igch3) which ignore CH pairs when they belongs to a CH3 group. - Update doc and notebook04 with option -igch3 - Fix beta H reconstruction for Berger and GROMOSCPK POPS diff --git a/buildh/__init__.py b/buildh/__init__.py index 64fe358..2b261a2 100644 --- a/buildh/__init__.py +++ b/buildh/__init__.py @@ -27,7 +27,7 @@ __authors__ = ("Hubert Santuz", "Amélie Bâcle", "Pierre Poulain", "Patrick Fuchs") __email__ = "patrick.fuchs@u-paris.fr" -__version__ = "1.6.0" +__version__ = "1.6.1" __license__ = "BSD 3-Clause License" # Silent this unharmful warning from MDAnalysis diff --git a/devtools/bumpversion.cfg b/devtools/bumpversion.cfg index 8be8936..6051319 100644 --- a/devtools/bumpversion.cfg +++ b/devtools/bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.6.0 +current_version = 1.6.1 [bumpversion:file:buildh/__init__.py] diff --git a/setup.py b/setup.py index ddf2651..2e1c362 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,3 @@ import setuptools -setuptools.setup(version="1.6.0") \ No newline at end of file +setuptools.setup(version="1.6.1") \ No newline at end of file