Skip to content

Commit e593dd5

Browse files
committed
Bump version: 0.6.2 → 0.7.0
1 parent 783f5c0 commit e593dd5

File tree

5 files changed

+26
-18
lines changed

5 files changed

+26
-18
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.6.2"
16+
__version__ = "0.7.0"
1717

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

release-notes/0.7.0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Release notes for cobrapy 0.7.0
2+
3+
## Fixes
4+
5+
- `cobra.flux_analysis.reaction.assess`
6+
[was broken](https://github.com/opencobra/cobrapy/issues/537)
7+
following the release of 0.6.0 and has now been fixed (and now with
8+
unit tests).
9+
- `production_envelope` failed when model C-source was formulated as
10+
-> x instead of x <-. Fixed added option to guess the C-source by
11+
taking the medium reaction with the highest input C flux.
12+
- `model_to_pymatbridge` needs scipy and that's correctly handled now.
13+
14+
## New features
15+
- `flux_variability_analysis` now has the `pfba_factor` parameter
16+
which enables the inclusion of a constraint on the max sum of
17+
absolute fluxes when doing FVA.
18+
19+
## Deprecated features
20+
21+
- `cobra.flux_analysis.reaction.assess_{precursors,products}` were
22+
essentially copies of each other and have been merged to
23+
`cobra.flux_analysis.reaction.assess_component`

release-notes/next-release.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,7 @@
22

33
## Fixes
44

5-
- `cobra.flux_analysis.reaction.assess`
6-
[was broken](https://github.com/opencobra/cobrapy/issues/537)
7-
following the release of 0.6.0 and has now been fixed (and now with
8-
unit tests).
9-
- `production_envelope` failed when model C-source was formulated as
10-
-> x instead of x <-. Fixed added option to guess the C-source by
11-
taking the medium reaction with the highest input C flux.
12-
- `model_to_pymatbridge` needs scipy and that's correctly handled now.
13-
145
## New features
15-
- `flux_variability_analysis` now has the `pfba_factor` parameter
16-
which enables the inclusion of a constraint on the max sum of
17-
absolute fluxes when doing FVA.
186

197
## Deprecated features
208

21-
- `cobra.flux_analysis.reaction.assess_{precursors,products}` were
22-
essentially copies of each other and have been merged to
23-
`cobra.flux_analysis.reaction.assess_component`

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.6.2
2+
current_version = 0.7.0
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.6.2",
147+
version="0.7.0",
148148
packages=find_packages(),
149149
setup_requires=setup_requirements,
150150
install_requires=["future", "swiglpk", "optlang>=1.1.5", "ruamel.yaml<0.15",

0 commit comments

Comments
 (0)