diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6948f63..63b8f24 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,12 +1,8 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True -[bumpversion:file:setup.py] -search = version="{current_version}" -replace = version="{new_version}" - [bumpversion:file:pyn5/__init__.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}" @@ -14,3 +10,4 @@ replace = __version__ = "{new_version}" [bumpversion:file:Cargo.toml] search = version = "{current_version}" replace = version = "{new_version}" + diff --git a/.travis.yml b/.travis.yml index 48a19fd..05ccfc8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ python: stages: - test - name: deploy - if: (branch = master) AND (tag =~ ^v\d+.*$) + if: tag =~ ^v\d+.*$ env: global: - TRAVIS_RUST_VERSION=nightly-2019-07-19 diff --git a/Cargo.lock b/Cargo.lock index c7f65bb..fc43b4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -318,7 +318,7 @@ dependencies = [ [[package]] name = "pyn5" -version = "1.0.0" +version = "1.0.1" dependencies = [ "n5 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "numpy 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 998cbcd..bdafd4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyn5" -version = "1.0.0" +version = "1.0.1" authors = ["pattonw "] description = "Python wrapper around rust-n5." readme = "README.rst" diff --git a/pyn5/__init__.py b/pyn5/__init__.py index 6498afc..1d5dd86 100644 --- a/pyn5/__init__.py +++ b/pyn5/__init__.py @@ -4,7 +4,7 @@ __author__ = """William Hunter Patton""" __email__ = "pattonw@hhmi.org" -__version__ = "1.0.0" +__version__ = "1.0.1" from h5py_like import Mode