Skip to content

Commit 7af1c4c

Browse files
committed
Bump version: 0.8.1 → 0.8.2
1 parent 0a9649c commit 7af1c4c

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

cobra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
DictList, Gene, Metabolite, Model, Object, Reaction, Species)
1414
from cobra.util.version_info import show_versions
1515

16-
__version__ = "0.8.1"
16+
__version__ = "0.8.2"
1717

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

release-notes/0.8.2.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Release notes for cobrapy 0.8.2
2+
3+
## Fixes
4+
5+
- the Solution class no longer contains links progenitor model's
6+
reactions and metabolites
7+
- Guarantee that sampler._reproject always returns a feasible point
8+
and will not attempt to reproject already feasible
9+
points. [#564](https://github.com/opencobra/cobrapy/pull/564)
10+
- `Model.summary` no longer fails when calling after the model has
11+
changed. Fixed by letting the summary function re-compute a solution
12+
(default) or letting user supply a prior computed solution
13+
object. [#566](https://github.com/opencobra/cobrapy/pull/566)
14+
- Metabolites must now have valid identifiers before being added to a
15+
model or `ValueError` is raised.
16+
- Fix use of underscores in key/value pairs in legacy sbml
17+
notes. [#547](https://github.com/opencobra/cobrapy/issues/547)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.1
2+
current_version = 0.8.2
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)

setup.py

Lines changed: 1 addition & 1 deletion
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.8.1",
147+
version="0.8.2",
148148
packages=find_packages(),
149149
setup_requires=setup_requirements,
150150
install_requires=["future", "swiglpk", "optlang>=1.2.1",

0 commit comments

Comments
 (0)