Skip to content

Commit

Permalink
Bump version: 0.6.2 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hredestig committed Jul 14, 2017
1 parent 783f5c0 commit e593dd5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 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.6.2"
__version__ = "0.7.0"

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

## Fixes

- `cobra.flux_analysis.reaction.assess`
[was broken](https://github.com/opencobra/cobrapy/issues/537)
following the release of 0.6.0 and has now been fixed (and now with
unit tests).
- `production_envelope` failed when model C-source was formulated as
-> x instead of x <-. Fixed added option to guess the C-source by
taking the medium reaction with the highest input C flux.
- `model_to_pymatbridge` needs scipy and that's correctly handled now.

## New features
- `flux_variability_analysis` now has the `pfba_factor` parameter
which enables the inclusion of a constraint on the max sum of
absolute fluxes when doing FVA.

## Deprecated features

- `cobra.flux_analysis.reaction.assess_{precursors,products}` were
essentially copies of each other and have been merged to
`cobra.flux_analysis.reaction.assess_component`
15 changes: 0 additions & 15 deletions release-notes/next-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,7 @@

## Fixes

- `cobra.flux_analysis.reaction.assess`
[was broken](https://github.com/opencobra/cobrapy/issues/537)
following the release of 0.6.0 and has now been fixed (and now with
unit tests).
- `production_envelope` failed when model C-source was formulated as
-> x instead of x <-. Fixed added option to guess the C-source by
taking the medium reaction with the highest input C flux.
- `model_to_pymatbridge` needs scipy and that's correctly handled now.

## New features
- `flux_variability_analysis` now has the `pfba_factor` parameter
which enables the inclusion of a constraint on the max sum of
absolute fluxes when doing FVA.

## Deprecated features

- `cobra.flux_analysis.reaction.assess_{precursors,products}` were
essentially copies of each other and have been merged to
`cobra.flux_analysis.reaction.assess_component`
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.6.2
current_version = 0.7.0
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.6.2",
version="0.7.0",
packages=find_packages(),
setup_requires=setup_requirements,
install_requires=["future", "swiglpk", "optlang>=1.1.5", "ruamel.yaml<0.15",
Expand Down

0 comments on commit e593dd5

Please sign in to comment.