Skip to content

Commit c056078

Browse files
committed
Prep for v1.53.0
1 parent f30c394 commit c056078

6 files changed

Lines changed: 27 additions & 6 deletions

File tree

.JuliaFormatter.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Configuration file for JuliaFormatter.jl
2-
# For more information, see: https://domluna.github.io/JuliaFormatter.jl/stable/config/
2+
# For more information, see: https://JuliaEditorSupport.github.io/JuliaFormatter.jl/stable/config/
33

44
always_for_in = true
55
always_use_return = true

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "MathOptInterface"
22
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
3-
version = "1.52.0"
3+
version = "1.53.0"
44

55
[deps]
66
CodecBzip2 = "523fee87-0ab8-5b00-afb7-3ecf72e48cfd"

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
77

88
[compat]
99
Documenter = "1"
10-
DocumenterCodeBlocks = "1"
10+
DocumenterCodeBlocks = "1.3"
1111
JSON = "1"
1212
JSONSchema = "1"

docs/make.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,15 @@ Documenter.DocMeta.setdocmeta!(
163163
# Ignore the very many GitHub links
164164
r"https://github.com/jump-dev/.+",
165165
"https://arxiv.org/abs/2002.03447",
166-
# https://github.com/JuliaDocs/Documenter.jl/issues/2834
167166
"https://lpsolve.sourceforge.net/5.5/CPLEX-format.htm",
167+
"https://www.ibm.com/docs/en/icos/22.1.0?topic=cplex-lp-file-format-algebraic-representation",
168+
"https://www.ibm.com/docs/en/icos/22.1.1?topic=api-cpxmip-optimal-infeas",
168169
],
169170
modules = [MathOptInterface],
170171
checkdocs = :exports,
171172
doctest = _FIX ? :fix : true,
172173
pages = _PAGES,
173-
plugins = [DocumenterCodeBlocks.CodeBlocks()],
174+
plugins = [DocumenterCodeBlocks.CodeBlocks(; line_counter = :named)],
174175
)
175176

176177
# ==============================================================================

docs/src/changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ CurrentModule = MathOptInterface
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## v1.53.0 (August 18, 2026)
11+
12+
### Added
13+
14+
- Added [`dual_set`](@ref) for [`NormCone`](@ref) (#3042)
15+
- Added [`DualGeometricMeanCone`](@ref) (#3041), (#3047)
16+
- Added [`DualRelativeEntropyCone`](@ref) (#3049), (#3051)
17+
18+
### Fixed
19+
20+
- Fixed compat bound on CliqueTrees.jl (#3039)
21+
22+
### Other
23+
24+
- Updated `solver_tests.yml` (#3038)
25+
- Updated GitHub actions versions (#3043)
26+
- Added DocumenterCodeBlocks.jl (#3044)
27+
- Disable `depwarn=error` on Julia nightly (#3050)
28+
- Fixed various typos in the documentation (#3052)
29+
1030
## v1.52.0 (July 31, 2026)
1131

1232
### Added

docs/src/tutorials/implementing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Project.toml
185185
* The `/test` folder contains code for testing your package. See
186186
[Setup tests](@ref) for more information.
187187
* The `.JuliaFormatter.toml` and `.github/workflows/format_check.yml` enforce
188-
code formatting using [JuliaFormatter.jl](https://github.com/domluna/JuliaFormatter.jl).
188+
code formatting using [JuliaFormatter.jl](https://github.com/JuliaEditorSupport/JuliaFormatter.jl).
189189
Check existing solvers or JuMP.jl for details.
190190

191191
### Documentation

0 commit comments

Comments
 (0)