Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finalize release 6.8.2 #3428

Merged
merged 8 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .coin-or/projDesc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ Carl D. Laird, Chair, Pyomo Management Committee, claird at andrew dot cmu dot e
Use explicit overrides to disable use of automated
version reporting.
-->
<stableVersionNumber>6.8.1</stableVersionNumber>
<releaseNumber>6.8.1</releaseNumber>
<stableVersionNumber>6.8.2</stableVersionNumber>
<releaseNumber>6.8.2</releaseNumber>

</developmentStatus>

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Pyomo CHANGELOG
===============

-------------------------------------------------------------------------------
Pyomo 6.8.2 (18 Nov 2024)
-------------------------------------------------------------------------------

- Core
- Resolve errors in mapping ScalarVar to numpy ndarray (#3423)
- Documentation
- Update Documentation URLs (#3425)
- Solver Interfaces
- Resolve error in xpress_direct interface retrieving reduced costs (#3422)
- Testing
- Remove (unused) legacy test drivers (#3427)

-------------------------------------------------------------------------------
Pyomo 6.8.1 (15 Nov 2024)
-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
We are pleased to announce the release of Pyomo 6.8.1.
We are pleased to announce the release of Pyomo 6.8.2.

Pyomo is a collection of Python software packages that supports a
diverse set of optimization capabilities for formulating and analyzing
Expand Down
8 changes: 4 additions & 4 deletions pyomo/version/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
# should generally be left at 0, unless a downstream package is tracking
# main and needs a hard reference to "suitably new" development.
major = 6
minor = 9
micro = 0
releaselevel = 'invalid'
# releaselevel = 'final'
minor = 8
micro = 2
# releaselevel = 'invalid'
releaselevel = 'final'
serial = 0

if releaselevel == 'final':
Expand Down
Loading