Skip to content

Commit

Permalink
Merge pull request #35 from chrishavlin/main
Browse files Browse the repository at this point in the history
adjusting bump2version config and bumping
  • Loading branch information
matthewturk authored Oct 5, 2021
2 parents 7a83955 + 1ee5360 commit 081891d
Showing 3 changed files with 14 additions and 15 deletions.
12 changes: 12 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[bumpversion]
current_version = 0.2.2
commit = True
tag = True

[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}

[bumpversion:file:yt_idv/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
15 changes: 1 addition & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = yt_idv
version = 0.2.1
version = 0.2.2
description = Interactive Volume Rendering for yt
long_description = file: README.md
long_description_content_type = text/markdown
@@ -65,19 +65,6 @@ dev =
watchdog==0.9.0
wheel==0.33.6

[bumpversion]
current_version = 0.2.1
commit = True
tag = True

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:yt_idv/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bdist_wheel]
universal = 1

2 changes: 1 addition & 1 deletion yt_idv/__init__.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

__author__ = """Matthew Turk"""
__email__ = "matthewturk@gmail.com"
__version__ = "0.2.1"
__version__ = "0.2.2"

import os

0 comments on commit 081891d

Please sign in to comment.