Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #97 from pattonw/bumpversion
Browse files Browse the repository at this point in the history
update pattern matching in bumpversion, und bump up a patch
  • Loading branch information
pattonw authored Sep 20, 2019
2 parents f7ee234 + 7dae346 commit 38222ab
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
7 changes: 2 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
[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}"

[bumpversion:file:Cargo.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyn5"
version = "1.0.0"
version = "1.0.1"
authors = ["pattonw <[email protected]>"]
description = "Python wrapper around rust-n5."
readme = "README.rst"
Expand Down
2 changes: 1 addition & 1 deletion pyn5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """William Hunter Patton"""
__email__ = "[email protected]"
__version__ = "1.0.0"
__version__ = "1.0.1"

from h5py_like import Mode

Expand Down

0 comments on commit 38222ab

Please sign in to comment.