Skip to content

Commit

Permalink
"Bump version: 2.0.6 → 2.0.7"
Browse files Browse the repository at this point in the history
  • Loading branch information
rjchallis committed Mar 3, 2021
1 parent cdc7962 commit 0bd67ac
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .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}
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
@@ -1,5 +1,5 @@
{% set name = "genomehubs" %}
{% set version = "2.0.6" %}
{% set version = "2.0.7" %}

package:
name: {{ name }}
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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 = ["."]
Expand Down
2 changes: 1 addition & 1 deletion 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*)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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"
% (
Expand Down
2 changes: 1 addition & 1 deletion src/genomehubs/lib/version.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
"""genomehubs version."""

__version__ = "2.0.6"
__version__ = "2.0.7"

0 comments on commit 0bd67ac

Please sign in to comment.