Skip to content

Commit

Permalink
Bump version: 0.5.11 → 0.6.0a1
Browse files Browse the repository at this point in the history
  • Loading branch information
hredestig committed Mar 7, 2017
1 parent 74e7ab9 commit 75063bc
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cobra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from cobra.core import (
DictList, Gene, Metabolite, Model, Object, Reaction, Species)

__version__ = "0.5.11"
__version__ = "0.6.0a1"

# set the warning format to be prettier and fit on one line
_cobra_path = _dirname(_abspath(__file__))
Expand Down
28 changes: 22 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
[bumpversion]
current_version = 0.5.11
current_version = 0.6.0a1
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
((?P<release>[ab])(?P<num>\d+))?
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}

[bumpversion:part:release]
optional_value = placeholder
first_value = a
values =
a
b
placeholder

[bumpversion:file:setup.py]
search = version="{current_version}"
Expand Down Expand Up @@ -29,9 +45,9 @@ testpaths = cobra/test

[isort]
not_skip = __init__.py
indent=4
line_length=79
multi_line_output=4
known_third_party=future,six
known_first_party=cobra
indent = 4
line_length = 79
multi_line_output = 4
known_third_party = future,six
known_first_party = cobra

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def build_extension(self, ext):

setup(
name="cobra",
version="0.5.11",
version="0.6.0a1",
packages=find_packages(),
setup_requires=setup_requirements,
install_requires=["future", "swiglpk", "optlang",
Expand Down

0 comments on commit 75063bc

Please sign in to comment.