Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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.40.0"
version = "1.40.1"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand Down
8 changes: 2 additions & 6 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,8 @@ Documenter.DocMeta.setdocmeta!(
linkcheck_ignore = [
# Ignore the PDF link, because it hasn't been built yet.
"MathOptInterface.pdf",
# Ignore tags, because prepping for a new release will otherwise cause
# it to fail.
r"https://github.com/jump-dev/MathOptInterface.jl/releases/tag/v([0-9]).([0-9]+).([0-9]+)",
# Ignore issue and pull request links, because there are many of them,
# and they sometimes time-out the linkcheck.
r"https://github.com/jump-dev/MathOptInterface.jl/issues/([0-9]+)",
# Ignore the very many GitHub links
r"https://github.com/jump-dev/.+",
"https://arxiv.org/abs/2002.03447",
],
modules = [MathOptInterface],
Expand Down
18 changes: 18 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ 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.40.1 (May 19, 2025)

### Fixed

- Fixed a missing [`dual_set`](@ref) for [`HermitianPositiveSemidefiniteConeTriangle`](@ref)
(#2749)
- Fixed [`Utilities.get_fallback`](@ref) of [`DualObjectiveValue`](@ref) with
[`HyperRectangle`](@ref) (#2755)
- Fixed reading SDPA files with `{}` punctuation (#2759)

### Other

- Fixed a flakey doctest that depended on the runtime of a function (#2748)
- Changed to use `Base.only` when appropriate (#2751)
- Removed the experimental warning from Nonlinear module docstring (#2752)
- Changed to use `throw_if_scalar_and_constant_not_zero` when appropriate (#2753)
- Improved the text of `showerror` for `NotAllowedError` (#2757)

## v1.40.0 (May 4, 2025)

### Added
Expand Down
Loading