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

Prep for v1.19.0 #2232

Merged
merged 8 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
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.18.0"
version = "1.19.0"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand Down
38 changes: 38 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,44 @@ 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.19.0 (August 15, 2023)

### Added

- Added [`VectorNonlinearFunction`](@ref) (#2201)
- Added new bridges
* [`Bridges.Constraint.IntegerToZeroOneBridge`](@ref) (#2205)
* [`Bridges.Constraint.ToScalarQuadraticBridge`](@ref) (#2235)
* [`Bridges.Constraint.ToVectorQuadraticBridge`](@ref) (#2235)
* [`Bridges.Constraint.ToScalarNonlinearBridge`](@ref) (#2233) (#2235)
* [`Bridges.Constraint.FunctionConversionBridge`](@ref) (#2235)
- Added [`Bridges.bridging_cost`](@ref) for setting a bridge-specific cost in
the bridging graph (#2235)
- Added [`Utilities.eval_variables`](@ref) support for
[`ScalarNonlinearFunction`](@ref) (#2218) (#2219)
- Added support for [`ScalarNonlinearFunction`](@ref) in `FileFormats.NL`
(#2228) (#2231)
- Added support for writing non-`Float64` functions in `FileFormats.MOF`
- Added `Utilities.lazy_map` (#2254)

### Fixed

- Fixed method ambiguities in `operate` (#2224)
- Fixed reading LP file with a `-infinity <= x <= +infinity` variable (#2225)
- Fixed missing `require` in `Test.test_nonlinear_duals` (#2230)
- Fixed bug in [`ConstraintPrimal`](@ref) of [`Bridges.Constraint.QuadtoSOCBridge`](@ref)
(#2240)

### Other

- Added extensions to `solver-tests.yml` (#2229)
- Refactored `test/Benchmarks` (#2234)
- Fixed warnings in tests (#2241) (#2243)
- Small refactoring of bridges for upcoming `VectorNonlinearFunction` (#2244)
(#2245)
- Fixed various typos (#2251) (#2255)
- Partitioned how we run the tests on GitHub actions (#2252) (#2253)

## v1.18.0 (June 23, 2023)

### Added
Expand Down
Loading