Skip to content

Commit

Permalink
Bump version: 0.8.1 → 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hredestig committed Aug 9, 2017
1 parent 0a9649c commit 7af1c4c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cobra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
DictList, Gene, Metabolite, Model, Object, Reaction, Species)
from cobra.util.version_info import show_versions

__version__ = "0.8.1"
__version__ = "0.8.2"

# set the warning format to be prettier and fit on one line
_cobra_path = _dirname(_abspath(__file__))
Expand Down
17 changes: 17 additions & 0 deletions release-notes/0.8.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Release notes for cobrapy 0.8.2

## Fixes

- the Solution class no longer contains links progenitor model's
reactions and metabolites
- Guarantee that sampler._reproject always returns a feasible point
and will not attempt to reproject already feasible
points. [#564](https://github.com/opencobra/cobrapy/pull/564)
- `Model.summary` no longer fails when calling after the model has
changed. Fixed by letting the summary function re-compute a solution
(default) or letting user supply a prior computed solution
object. [#566](https://github.com/opencobra/cobrapy/pull/566)
- Metabolites must now have valid identifiers before being added to a
model or `ValueError` is raised.
- Fix use of underscores in key/value pairs in legacy sbml
notes. [#547](https://github.com/opencobra/cobrapy/issues/547)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.1
current_version = 0.8.2
commit = True
tag = True
parse = (?P<major>\d+)
Expand Down
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.8.1",
version="0.8.2",
packages=find_packages(),
setup_requires=setup_requirements,
install_requires=["future", "swiglpk", "optlang>=1.2.1",
Expand Down

0 comments on commit 7af1c4c

Please sign in to comment.