Skip to content

Commit

Permalink
Merge pull request #732 from Pyomo/update-changelog
Browse files Browse the repository at this point in the history
Updating CHANGELOG in preparation for the Pyomo 5.6 release
  • Loading branch information
jsiirola committed Dec 19, 2018
2 parents a8855f7 + 0fc7e14 commit 7af230d
Show file tree
Hide file tree
Showing 4 changed files with 141 additions and 45 deletions.
144 changes: 124 additions & 20 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,130 @@ Pyomo CHANGELOG
===============

-------------------------------------------------------------------------------
Current Development
-------------------------------------------------------------------------------

- Removing testing and support for Python 2.6 (#322)
- Resolved Python 3.4 build errors on Appveyor. (#438)
- Wrap Vars in value() for assignment to numpy vectors (#436)
- Adding TerminationCondition and SolverStatus to pyomo.environ (#429)
- Resolved problems with ExternalFunctions with fixed arguments (#442)
- Adding the Pyomo5 expression system, which supports PyPy (#272)
- Efficiency improvements when processing unhashable indexes (#467)
- Bug fix processing exp() expressions in Pyomo5 (#471)
- Optimizations to minimize use of NumericConstant objects (#469)
- Resolving scaling issue with Pyomo expressions (#475)
- Resolving issue when path names with spaces appear in CPLEX run file (#485)
- Adding relative_to argument for getname() (#495)
- Refactoring pyomo.util into pyomo.common for the general utilities that do
not depend on the rest of Pyomo, and the user-focused modeling utilities in
pyomo.util. (#502)
- Transformations map create_using arguments through the model clone (#497)
- unique_component_name now checks all attributes (not just components) (#497)
Pyomo 5.6
-------------------------------------------------------------------------------

- General
- Removing testing and support for Python 2.6 (#322)
- Adding TerminationCondition and SolverStatus to pyomo.environ (#429)
- Refactoring pyomo.util into pyomo.common for the general utilities that do
not depend on the rest of Pyomo, and the user-focused modeling utilities in
pyomo.util. (#502)
- New utilities: Model size report (#579), calculating variable
values (#763)
- Fix pyomo help -s command (#551)
- Fixes to avoid deprecation warnings (#760, #765)
- Core
- Adding the Pyomo5 expression system, which supports PyPy (#272,
#471, #475, #514, #520, #524, #536, #615)
- Optimizations to minimize use of NumericConstant objects (#469)
- Implemented a general-purpose expression visitor (#671)
- Implicitly order Pyomo sets based on insertion order (#568)
- Fix for overriding values in IndexedSets (#710)
- Efficiency improvements when processing unhashable indexes (#467)
- Replace PyUtilib factories with native Pyomo factories (#661)
- unique_component_name now checks all attributes (not just components) (#497)
- Adding relative_to argument for getname() (#495)
- Add 'SubclassOf' to support finding components based on sub class (#723)
- Move PseudoMap out of _BlockData class (#778)
- Add Reference "component" (#655, #742)
- Transformations map create_using arguments through the model clone (#497)
- Implemented a scaling transformation (#694)
- Improvements for External Functions
- Resolved problems with ExternalFunctions with fixed arguments (#442)
- Add method to return F,G,H from AMPL external functions (#666, #668)
- Improvements to symbolic expressions
- Add support for sqrt function in differentiate() (#642)
- Update symbolic differentiation to be compatible with sympy 1.3
and performance improvements (#715, #719)
- Silence invalid error messages logged with Template Expressions (#634)
- Kernel improvements
- Move kernel util (#522)
- Kernel updates (#761)
- Kernel updates simplifying handling of active status on containers,
save storage key on child, warn overwriting container index, fix
linear_canonical_form flag on linear_constraint (#569, #570, #571,
#589, #598)
- Solver interfaces
- Fix to solver tempfiles (#590)
- Prevent crash when solver returns suffixes but not values for
variables (#596)
- Resolving issue when path names with spaces appear in CPLEX run file (#485)
- Fix for spaces in cplex file names (#586)
- Bugfix in Gurobi direct interface (#635)
- Fix NEOS interface when behind a proxy in Python 3.x (#644)
- Fixed Baron writer sqrt error (#751)
- Corrected Ipopt capabilities (#573)
- GAMS writer
- fix for power() expressions (#454)
- fix for fixed variables (#510)
- ShortNameLabeler to limit symbol names (#512)
- Add warning about zero division in variable evaluation (#529)
- Use tmpdir for subprocess files (#530)
- Integrate options attribute (#558)
- Change writer ctype checking (#593, #641)
- Fix double-operator due to negative constant (#698)
- Fix Windows stdout compatibility issue (#779)
- LP writer
- More efficient string manipulation in LP writer (#610)
- Fix generation of bounds for fixed variables in LP writer (#623)
- Cythonized writers in pyomo.repn (#675)
- Bilevel:
- Create pyomo.dualize (#606)
- Updates to dualization and bilevel solvers (#535)
- DAE updates
- Added support for external functions (#526)
- Bugfix in Casadi interface (#544)
- Code overhaul and improved test coverage (#660)
- GDP updates
- Implemented improper basic steps (#582)
- Add examples from literature (#581, #702)
- Improve BigM test robustness (#659)
- Bug fixes (#490, #498)
- PySP updates
- Python 3.7 support (#463)
- Fix bugs in finance example (#564, #578)
- Added a wrapper for PySP to create a scripting interace (#689, #727, #737)
- Bug fixes (#736, #788)
- New packages:
- DataPortal:
- Move DataPortal up to a top-level pyomo.dataportal subpackage (#607)
- Update options for pymysql (#678)
- Network
- Replaced Pyomo connector infrastructure with Pyomo.Network and
added sequential modular simulation capability (#583, #648)
- Contributed packages:
- GDPopt updates to use config blocks, support integer variables,
documentation, callback renaming, new initialization strategy
(#513, #541, #595, #599, #633, #650, #717)
- Update trust region to use ConfigBlocks (#738, #785)
- New packages:
- Preprocessing transformation for variable aggregation (#533, #617)
- Compute disjunctive variable bounds (#481)
- ParmEst package for parameter estimation (#706, #733, #769, #781)
- PyNumero package for numerical optimization (#725, #775)
- sensitivity_toolbox for interfacing with sIPOPT (#766)
- PETSc AMPL wrapper (#774)
- Testing
- Resolved several build errors on Appveyor (#438, #539, #552, #577, #705)
- Reconfigured Travis CI to run tests using DockerHub images, work on PRs
from forks, run Python 3.7 (#479, #517, #600)
- Jenkins driver updates to fix errors when files are moved/renamed,
delete coverage info from previous builds, decode unicode in
booktests driver, test fixes, new drivers (#627, #629, #630, #631,
#704, #735, #772, #771, #786)
- Documentation and Examples
- Converted old asciidoc documentation to Sphinx (#486, #574)
- Reorganized the Sphinx documentation to make it easier to navigate
and merge old and new documentation sections (#699)
- Create more prominent section for documentation on contrib packages (#729)
- Documentation updates: scripting (#543, #748, #756), pyomo.network
(#651, #745, #780), preprocessing transformations (#653), GAMS writer
(#518), pyomo.kernel (#767), abstract models (#777), general (#782)
- Document PR process (#628)
- Updated README.md to include link for performance plots (#534)
- Update examples (#436)


-------------------------------------------------------------------------------
Pyomo 5.5
Expand Down
30 changes: 11 additions & 19 deletions RELEASE.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
We are pleased to announce the release of Pyomo 5.5. Pyomo is a collection of
We are pleased to announce the release of Pyomo 5.6. Pyomo is a collection of
Python software packages that supports a diverse set of optimization
capabilities for formulating and analyzing optimization models.


The following are a summary of changes in this release:

- Removed testing for Python 3.4
- Various solver interface fixes: CBC, SCIP, IPOPT, GLPK
- New scripts for performance testing
- Added documentation tests.
- Updates to testing configuration on Travis and Appveyor
- Added exp() to symbolic module (#151)
- Resolved representation error with 1/var (#153)
- Added pyomo.core.kernel (#130)
- Added a TerminationCondition enum value for "Infeasible or Unbounded" (#171)
- Updates to DAPS (#200)
- Fix KeyError message in NL writer (#189)
- New ODE/DAE simulator interface for pyomo.DAE (#180)
- Added deprecation decorator (#203)
- New transformation to fix nonnegative variables in equality constraints (#198)
- Deprecated BigM piecewise representations (#216)
- Added GAMS solver interface (#164, #215, #221, #240)
The following are highlights of the 5.6 release series:

- New expression system enables robust support for pypy
- Dropped support for Python 2.6
- New contributed packages: preprocessing, parmest, pynumero,
sensitivity_toolbox, and petsc interface
- New modeling components: Reference, Port, Arc
- Overhaul of the documentation and move to pyomo.readthedocs.org
- Numerous bug fixes

A full list of updates and changes is available in the CHANGELOG.txt

Enjoy!

Expand Down
8 changes: 4 additions & 4 deletions pyomo/version/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
# VOTD build. releaselever should be left at 'invalid' for trunk
# development and set to 'final' for releases.
major=5
minor=5
micro=1
releaselevel='invalid'
#releaselevel='final'
minor=6
micro=0
#releaselevel='invalid'
releaselevel='final'
serial=0

if releaselevel == 'final':
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

requires = [
'PyUtilib>=5.6.3',
'PyUtilib>=5.6.4',
'appdirs',
'ply',
'six>=1.4',
Expand Down Expand Up @@ -91,7 +91,7 @@ def read(*rnames):
# pyomo/pyomo/version/__init__.py
# pyomo/RELEASE.txt
#
version='5.5.1',
version='5.6',
maintainer='William E. Hart',
maintainer_email='wehart@sandia.gov',
url='http://pyomo.org',
Expand Down

0 comments on commit 7af230d

Please sign in to comment.