From 3449404b9787d375690cc305fe6560d0919b294c Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Wed, 18 Oct 2017 00:22:54 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.3.7=20=E2=86=92=201.3.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .zenodo.json | 2 +- CHANGELOG | 1 + devtools/bumpversion.cfg | 2 +- devtools/conda/pbxplore/meta.yaml | 4 ++-- pbxplore/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index 3039870..458d128 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,5 +1,5 @@ { - "title": "PBxplore (v1.3.7): A program to explore protein structures with Protein Blocks", + "title": "PBxplore (v1.3.8): A program to explore protein structures with Protein Blocks", "creators": [{ "name": "Barnoud, Jonathan", "orcid": "0000-0003-0343-7796" diff --git a/CHANGELOG b/CHANGELOG index 2f58517..86adad3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,5 @@ **Dev** +**1.3.8** - Add and update version number in zenodo config file - Update authors affiliations in README - Fix typo in documentation diff --git a/devtools/bumpversion.cfg b/devtools/bumpversion.cfg index 9779f15..356922d 100644 --- a/devtools/bumpversion.cfg +++ b/devtools/bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.3.7 +current_version = 1.3.8 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} diff --git a/devtools/conda/pbxplore/meta.yaml b/devtools/conda/pbxplore/meta.yaml index 4042b12..d3953d4 100644 --- a/devtools/conda/pbxplore/meta.yaml +++ b/devtools/conda/pbxplore/meta.yaml @@ -1,10 +1,10 @@ package: name: pbxplore - version: "1.3.7" + version: "1.3.8" source: git_url: https://github.com/pierrepo/PBxplore.git - git_rev: v1.3.7 + git_rev: v1.3.8 build: entry_points: diff --git a/pbxplore/__init__.py b/pbxplore/__init__.py index 2151f69..eb40ff1 100644 --- a/pbxplore/__init__.py +++ b/pbxplore/__init__.py @@ -15,7 +15,7 @@ See :func:`pbxplore.assignment.assign` """ -__version__ = "1.3.7" +__version__ = "1.3.8" from .structure.loader import * from .assignment import assign diff --git a/setup.py b/setup.py index 91f5ea1..0b8e2d2 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ # Version number must be in sync with the one in pbxplore/__init__.py setup( name='pbxplore', - version='1.3.7', + version='1.3.8', description="PBxplore is a suite of tools dedicated to Protein Block analysis.", long_description=readme,