Skip to content

Commit a656fd2

Browse files
authored
Merge pull request #3973 from mrmundt/finalize-release-6.10.1
Finalize 6.10.1 Release
2 parents 214e461 + 9f21d5c commit a656fd2

5 files changed

Lines changed: 74 additions & 5 deletions

File tree

.coin-or/projDesc.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ Carl D. Laird, Chair, Pyomo Management Committee, claird at andrew dot cmu dot e
208208
Use explicit overrides to disable use of automated
209209
version reporting.
210210
-->
211-
<stableVersionNumber>6.10.0</stableVersionNumber>
212-
<releaseNumber>6.10.0</releaseNumber>
211+
<stableVersionNumber>6.10.1</stableVersionNumber>
212+
<releaseNumber>6.10.1</releaseNumber>
213213

214214
</developmentStatus>
215215

CHANGELOG.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,73 @@
11
Pyomo CHANGELOG
22
===============
33

4+
-------------------------------------------------------------------------------
5+
Pyomo 6.10.1 (04 Jun 2026)
6+
-------------------------------------------------------------------------------
7+
8+
- General
9+
- Resolve `capture_output` deadlock in multiprocessing environments (#3957)
10+
- Add SetOf domain; improve config's mock yaml dumper (#3872)
11+
- Bugfixes and testing of linear templates (#3781)
12+
- Core
13+
- Remove `pyomo.duality` and `pyomo.core.plugins.transform.model` (#3876)
14+
- Improved `ConstraintData.equality` relational expression generation (#3893)
15+
- Add new KKT Transformation for generating KKT reformulations (#3881)
16+
- New options/mappings in the core.add_slack_variables Transformation (#3869)
17+
- Centralize processing of monomial terms in LinearRepn compiler (#3956)
18+
- Documentation
19+
- Remove "deep" references to `scipopt.org`; update DOI for DoE paper (#3968)
20+
- Add AI policy to contribution guide (#3959)
21+
- Add a new template for tracking tasks (#3935)
22+
- Document use of 'Draft' status when reviewing PRs (#3918)
23+
- Improve documentation for mutable vs immutable Params (#3890)
24+
- Update README processing, version management (#3873)
25+
- Update URL for cyipopt documentation (#3909)
26+
- GDP
27+
- Modify hull transform to allow a nonzero base point (#3880)
28+
- Add exact hull reformulation for quadratic constraints (#3874)
29+
- Solver Interfaces
30+
- Fix memory leak in LegacySolverInterface wrapper (#3915)
31+
- Add direct and persistent interfaces to SCIP (#3744)
32+
- KNITRO: Add warm start support (#3833)
33+
- Handle cuOpt UnboundedOrInfeasible termination status (11) (#3916)
34+
- Fix bug in IPOPT version checking (#3862)
35+
- Add tests for trivial constraints (#3703)
36+
- Rework `SolutionLoader` (#3701)
37+
- Testing
38+
- Add missing Ipopt guards (parmest); add GHA nosolvers test (#3962)
39+
- Unpin GAMS release; rebuild GHA package cache (#3950)
40+
- Update GHA TPL cache; resolve new test failures (#3865)
41+
- Temporarily pin to PyPy 7.3.20 (#3899)
42+
- Update actions; exclude mathworks from URL checks (#3900, #3929)
43+
- Bugfix for non-standard sed on OSX (#3901)
44+
- Update osx installers and urlchecker environment (#3914)
45+
- GHA: run tests on draft PRs (#3926)
46+
- Add NEOS solvers (#3919, #3924)
47+
- Disallow cplex 22.1.2.1 from conda (#3910)
48+
- Contributed Packages
49+
- DoE: Fix trace/Cholesky initialization consistency (#3867)
50+
- DoE: Update documentation (#3812)
51+
- iis: Fix interface for current CPLEX releases (#3965)
52+
- initialization: New tools for initializing nonconvex NLPs (#3912)
53+
- mpc: Skip Expressions when loading MPC data (#3868)
54+
- MindtPy: Internal short circuit base (#3907)
55+
- MindtPy: Fix results returned when no discrete variables present (#3861)
56+
- parmest/DoE: Reorganizing Documentation Pages (#3904)
57+
- parmest: Simplify _Q_opt with block scenario structure (#3789)
58+
- parmest: Add regularization objective option (#3550)
59+
- piecewise: Factorable Programming for PWL Approximations (#3821)
60+
- piecewise: Separate linear terms in ``nonlinear_to_pwl`` transform. (#3814)
61+
- PyNumero: Efficiency change to sensitivity toolbox calculations (#3905)
62+
- PyNumero: Use Hessian approximation for grey-boxes sent to CyIpopt (#3892)
63+
- PyROS: Fix typos in PyROS `CardinalitySet` documentation (#3972)
64+
- PyROS: Extend the `CardinalitySet` to allow negative deviations (#3969)
65+
- PyROS: Add `CartesianProductSet` (#3927, #3951)
66+
- PyROS: Add caching for computed uncertain parameter bounds (#3877)
67+
- PyROS: Amend documentation of `BudgetSet.budget_membership_mat` (#3954)
68+
- TrustRegion: Remove direct manipulation of `stdout` (#3902)
69+
- TrustRegion: Add funnel globalization mechanism (#3832)
70+
471
-------------------------------------------------------------------------------
572
Pyomo 6.10.0 (20 Feb 2026)
673
-------------------------------------------------------------------------------

RELEASE.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
We are pleased to announce the release of Pyomo 6.10.0.
1+
We are pleased to announce the release of Pyomo 6.10.1.
22

33
Pyomo is a collection of Python software packages that supports a
44
diverse set of optimization capabilities for formulating and analyzing
@@ -9,9 +9,11 @@ The following are highlights of the 6.10 release series:
99
- Removed support for Python 3.9
1010
- Removed hard dependency on `ply`
1111
- New Model Observer package
12+
- New `initialization` module for nonconvex, nonlinear problems
1213
- New solver interfaces:
1314
- `gams_v2` solver, writer, and solution loader
1415
- `cuopt` direct solver interface
16+
- `scip` direct and persistent solver interfaces
1517
- v2: Ongoing solver interface refactor
1618
- ...and of course numerous minor bug fixes and performance enhancements
1719

pyomo/contrib/parmest/parmest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2328,7 +2328,7 @@ def objective_at_theta(self, theta_values=None, initialize_parmest_model=False):
23282328
"The `initialize_parmest_model` option in `objective_at_theta()` is "
23292329
"deprecated and will be removed in future releases. Please ensure the "
23302330
"model is initialized within the Experiment class definition.",
2331-
version="6.10.1.dev0",
2331+
version="6.10.1",
23322332
)
23332333

23342334
if theta_values is None:

pyomo/version/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
major = 6
2121
minor = 10
2222
micro = 1
23-
# releaselevel = 'final'
23+
releaselevel = 'final'
2424
serial = 0
2525

2626

0 commit comments

Comments
 (0)