Skip to content

Commit

Permalink
Prep for v1.16.0 (#2172)
Browse files Browse the repository at this point in the history
* Prep for v1.16.0

* Update changelog.md

* Update changelog.md
  • Loading branch information
odow authored May 16, 2023
1 parent 61067b7 commit 197424d
Show file tree
Hide file tree
Showing 2 changed files with 31 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.15.1"
version = "1.16.0"

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

### Added

- Added support for MathOptFormat v1.3 and v1.4 (#2158) (#2169)
- Added new method to the nonlinear API (#2162) (#2164)
- [`eval_hessian_constraint`](@ref)
- [`eval_hessian_objective`](@ref)
- [`hessian_constraint_structure`](@ref)
- [`hessian_objective_structure`](@ref)
- Added new sets
- [`NormCone`](@ref) (#2119)
- [`ScaledPositiveSemidefiniteConeTriangle`](@ref) (#2154)

### Fixed

- Fixed support for Julia v1.9 to work around a bug in the upstream Julia
compiler (#2161) (#2163)
- Fixed a correctness bug in [`Bridges.Constraint.HermitianToSymmetricPSDBridge`](@ref)
(#2171)
- Fixed `convert(::VariableIndex, ::ScalarAffineFunction)` when the function
has terms with `0`coefficients (#2173)

### Other

- Fixed `solver-tests.yml` (#2157)
- Updated documentation links to developer chatroom (#2160)
- Added various tests for bridges (#2156)
- Added checklists to the developer documentation (#2167) (#2168)

## v1.15.1 (April 25, 2023)

### Fixed
Expand Down

2 comments on commit 197424d

@blegat
Copy link
Member

@blegat blegat commented on 197424d May 16, 2023

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/83665

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.16.0 -m "<description of version>" 197424ddf1e03ccabc3d9b099f0f86dca8165752
git push origin v1.16.0

Please sign in to comment.