Skip to content

Commit

Permalink
Bump version: 0.13.4 → 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Dec 5, 2018
1 parent 8debb57 commit 2a5c939
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cobra/__init__.py
Expand Up @@ -15,7 +15,7 @@
from cobra import io
from cobra.util import show_versions

__version__ = "0.13.4"
__version__ = "0.14.0"

# set the warning format to be prettier and fit on one line
_cobra_path = _dirname(_abspath(__file__))
Expand Down
11 changes: 6 additions & 5 deletions setup.cfg
@@ -1,20 +1,20 @@
[bumpversion]
current_version = 0.13.4
current_version = 0.14.0
commit = True
tag = True
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a]*)(?P<num>\d*)
serialize =
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
tag_name = {new_version}

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

Expand Down Expand Up @@ -50,14 +50,15 @@ line_length = 80
multi_line_output = 4
lines_after_imports = 2
known_first_party = cobra
known_third_party =
known_third_party =
depinfo
future
numpy
optlang
pandas
pytest
pytest
ruamel.yaml
swiglpk
six
tabulate

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -37,7 +37,7 @@
if __name__ == "__main__":
setup(
name="cobra",
version="0.13.4",
version="0.14.0",
packages=find_packages(),
setup_requires=setup_requirements,
install_requires=[
Expand Down

0 comments on commit 2a5c939

Please sign in to comment.