Skip to content

Commit

Permalink
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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}'
replace = __version__ = '{new_version}'
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genomeshader"
version = "0.1.0"
version = "0.1.1"
authors = ["Kiran V Garimella <[email protected]>"]
edition = "2021"
license = "BSD 3-Clause"
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

version=0.1.0
version=0.1.1
2 changes: 1 addition & 1 deletion python/genomeshader/__init__.py
Original file line number Diff line number Diff line change
@@ -6,6 +6,6 @@
For detailed documentation and examples, see the README.
"""

__version__ = '0.1.0'
__version__ = '0.1.1'

from .view import *

0 comments on commit 5bb7959

Please sign in to comment.