Skip to content

Commit

Permalink
Prepare for bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Haydnspass committed Oct 12, 2022
1 parent ec676e4 commit 89d48e2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[bumpversion]
current_version = 0.10.1rc0
current_version = 0.10.1dev0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = rc
first_value = a
values =
values =
dev
a
b
Expand Down
2 changes: 1 addition & 1 deletion conda/decode/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: decode
version: "0.10.1" # do not modify by hand; set and sync with bumpversion
version: "0.10.1dev0" # do not modify by hand; set and sync with bumpversion

source:
- path: ../..
Expand Down
2 changes: 1 addition & 1 deletion decode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

__version__ = '0.10.1' # do not modify by hand set and sync with bumpversion
__version__ = '0.10.1dev0' # do not modify by hand set and sync with bumpversion
__author__ = 'Lucas-Raphael Mueller, Artur Speiser'
__repo__ = 'https://github.com/TuragaLab/DECODE/master/gateway.yaml' # main repo
__gateway__ = 'https://raw.githubusercontent.com/TuragaLab/DECODE/master/gateway.yaml' # gateway
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

setup(
name='decode',
version='0.10.1', # do not modify by hand set and sync with bumpversion
version='0.10.1dev0', # do not modify by hand set and sync with bumpversion
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
Expand Down

0 comments on commit 89d48e2

Please sign in to comment.