Skip to content

Commit 75063bc

Browse files
committed
Bump version: 0.5.11 → 0.6.0a1
1 parent 74e7ab9 commit 75063bc

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

cobra/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from cobra.core import (
1313
DictList, Gene, Metabolite, Model, Object, Reaction, Species)
1414

15-
__version__ = "0.5.11"
15+
__version__ = "0.6.0a1"
1616

1717
# set the warning format to be prettier and fit on one line
1818
_cobra_path = _dirname(_abspath(__file__))

setup.cfg

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
[bumpversion]
2-
current_version = 0.5.11
2+
current_version = 0.6.0a1
33
commit = True
44
tag = True
5+
parse = (?P<major>\d+)
6+
\.(?P<minor>\d+)
7+
\.(?P<patch>\d+)
8+
((?P<release>[ab])(?P<num>\d+))?
9+
serialize =
10+
{major}.{minor}.{patch}{release}{num}
11+
{major}.{minor}.{patch}
12+
tag_name = {new_version}
13+
14+
[bumpversion:part:release]
15+
optional_value = placeholder
16+
first_value = a
17+
values =
18+
a
19+
b
20+
placeholder
521

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

3046
[isort]
3147
not_skip = __init__.py
32-
indent=4
33-
line_length=79
34-
multi_line_output=4
35-
known_third_party=future,six
36-
known_first_party=cobra
48+
indent = 4
49+
line_length = 79
50+
multi_line_output = 4
51+
known_third_party = future,six
52+
known_first_party = cobra
3753

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def build_extension(self, ext):
144144

145145
setup(
146146
name="cobra",
147-
version="0.5.11",
147+
version="0.6.0a1",
148148
packages=find_packages(),
149149
setup_requires=setup_requirements,
150150
install_requires=["future", "swiglpk", "optlang",

0 commit comments

Comments
 (0)