diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 99116d5..6f8f85b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True tag_name = {new_version} @@ -14,4 +14,4 @@ replace = version = "{new_version}" [bumpversion:file:python/genomeshader/__init__.py] search = __version__ = '{current_version}' -replace = __version__ = '{new_version}' \ No newline at end of file +replace = __version__ = '{new_version}' diff --git a/Cargo.toml b/Cargo.toml index 57fb7ea..c31b05a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genomeshader" -version = "0.1.0" +version = "0.1.1" authors = ["Kiran V Garimella "] edition = "2021" license = "BSD 3-Clause" diff --git a/VERSION b/VERSION index 1b9996e..6813553 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -version=0.1.0 +version=0.1.1 diff --git a/python/genomeshader/__init__.py b/python/genomeshader/__init__.py index f9c0d81..c9c679d 100644 --- a/python/genomeshader/__init__.py +++ b/python/genomeshader/__init__.py @@ -6,6 +6,6 @@ For detailed documentation and examples, see the README. """ -__version__ = '0.1.0' +__version__ = '0.1.1' from .view import * \ No newline at end of file