diff --git a/CHANGELOG b/CHANGELOG index 744cb25..b160f96 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,5 @@ **Dev** +**1.3.6** - Add a version option for scripts (based on pbxplore.__version__) - update doc for installation and configuration - Fix weblogo compatibility diff --git a/devtools/bumpversion.cfg b/devtools/bumpversion.cfg index f0ae90f..ada5e49 100644 --- a/devtools/bumpversion.cfg +++ b/devtools/bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.3.5 +current_version = 1.3.6 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 8eb185d..022f112 100644 --- a/devtools/conda/pbxplore/meta.yaml +++ b/devtools/conda/pbxplore/meta.yaml @@ -1,10 +1,10 @@ package: name: pbxplore - version: "1.3.5" + version: "1.3.6" source: git_url: https://github.com/pierrepo/PBxplore.git - git_rev: v1.3.5 + git_rev: v1.3.6 build: entry_points: diff --git a/pbxplore/__init__.py b/pbxplore/__init__.py index bb2880c..68bb431 100644 --- a/pbxplore/__init__.py +++ b/pbxplore/__init__.py @@ -15,7 +15,7 @@ See :func:`pbxplore.assignment.assign` """ -__version__ = "1.3.5" +__version__ = "1.3.6" from .structure.loader import * from .assignment import assign diff --git a/setup.py b/setup.py index afe7df5..028e8fa 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.5', + version='1.3.6', description="PBxplore is a suite of tools dedicated to Protein Block analysis.", long_description=readme,