Skip to content

Commit

Permalink
Prep for v1.32.0 (#2562)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Oct 21, 2024
1 parent c3a9551 commit ee313be
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MathOptInterface"
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
version = "1.31.2"
version = "1.32.0"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand Down
26 changes: 26 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ CurrentModule = MathOptInterface
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.32.0 (October 21, 2024)

### Added

- Added support for user-defined univariate operators which do not support
second derivatives (#2542)
- Added the [`NodeLimit`](@ref) attribute (#2552)
- Added support for `Utilities.filter_variables` with
[`VectorNonlinearFunction`](@ref) (#2556)

### Fixed

- Fixed [`Bridges.Constraint.TableToMILPBridge`](@ref) if there is a constant
in the function (#2544)
- Fixed `FileFormats.MPS` and `FileFormats.LP` to read separate variable bounds
instead of an [`Interval`](@ref) set (#2548)
- Fixed the variable domains in `Test.test_nonlinear_expression_hs110` (#2551)
- Fixed the dimension of `VectorNonlinearFunction` in tests (#2555)
- Fixed the use of `1:length(x)` in `Nonlinear.Coloring` (#2559)
- Fixed an index conflict in `Nonlinear.Coloring` (#2561)

### Other

- Documentation fixes (#2541) (#2543) (#2545) (#2557) (#2560)
- Formatting improvements (#2554)

## v1.31.2 (August 30, 2024)

### Fixed
Expand Down

2 comments on commit ee313be

@odow
Copy link
Member Author

@odow odow commented on ee313be Oct 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/117722

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.32.0 -m "<description of version>" ee313beac6e9853fe1ae3bab79befa0f51a27886
git push origin v1.32.0

Please sign in to comment.