diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6b7aaee3..fcd1fde8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.6 +current_version = 2.0.7 commit = True tag = True tag_name = {new_version} diff --git a/README.rst b/README.rst index c8796d7e..e48cb478 100644 --- a/README.rst +++ b/README.rst @@ -42,9 +42,9 @@ GenomeHubs :alt: Conda platforms :target: https://anaconda.org/tolkit/genomehubs -.. |commits-since| image:: https://img.shields.io/github/commits-since/genomehubs/genomehubs/2.0.6.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/genomehubs/genomehubs/2.0.7.svg :alt: Commits since latest release - :target: https://github.com/genomehubs/genomehubs/compare/2.0.6...main + :target: https://github.com/genomehubs/genomehubs/compare/2.0.7...main .. |license| image:: https://anaconda.org/tolkit/genomehubs/badges/license.svg :alt: MIT License diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 06d22bc5..f8add197 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "genomehubs" %} -{% set version = "2.0.6" %} +{% set version = "2.0.7" %} package: name: {{ name }} diff --git a/docs/conf.py b/docs/conf.py index b6dac8a1..1a6b55b3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ version = release = get_distribution("genomehubs").version except Exception: traceback.print_exc() - version = release = "2.0.6" + version = release = "2.0.7" pygments_style = "trac" templates_path = ["."] diff --git a/scripts/conda_build.sh b/scripts/conda_build.sh index 79064de9..45afbb26 100755 --- a/scripts/conda_build.sh +++ b/scripts/conda_build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION=2.0.6 +VERSION=2.0.7 case $(uname | tr '[:upper:]' '[:lower:]') in linux*) diff --git a/setup.py b/setup.py index ab311ee9..cd1829ed 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(*names, **kwargs): setup( name="genomehubs", # Required - version="2.0.6", + version="2.0.7", description="GenomeHubs", # Optional long_description="%s\n%s" % ( diff --git a/src/genomehubs/lib/version.py b/src/genomehubs/lib/version.py index bab7ca25..0e87ce51 100644 --- a/src/genomehubs/lib/version.py +++ b/src/genomehubs/lib/version.py @@ -1,4 +1,4 @@ #!/usr/bin/env python3 """genomehubs version.""" -__version__ = "2.0.6" +__version__ = "2.0.7"