Skip to content

Commit

Permalink
Prep for v1.23.1 (#3814)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Aug 30, 2024
1 parent 89f3033 commit d2de3ab
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JuMP"
uuid = "4076af6c-e467-56ae-b986-b466b2749572"
repo = "https://github.com/jump-dev/JuMP.jl.git"
version = "1.23.0"
version = "1.23.1"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
6 changes: 3 additions & 3 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ Clarabel = "=0.9.0"
DataFrames = "1"
DimensionalData = "0.27.3"
Distributions = "0.25"
Documenter = "=1.4.1"
Documenter = "=1.6.0"
DocumenterCitations = "1"
Dualization = "0.5"
Enzyme = "0.12.14"
GLPK = "=1.2.1"
HTTP = "1.5.4"
HiGHS = "=1.9.2"
Interpolations = "0.14"
Ipopt = "=1.6.5"
Ipopt = "=1.6.6"
JSON = "0.21"
JSONSchema = "1"
Literate = "2.8"
MathOptInterface = "=1.31.0"
MathOptInterface = "=1.31.1"
MultiObjectiveAlgorithms = "=1.3.3"
PATHSolver = "=1.7.7"
Plots = "1"
Expand Down
16 changes: 7 additions & 9 deletions docs/packages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@
[MultiObjectiveAlgorithms]
rev = "v1.3.3"
has_html = true
[NEOSServer]
rev = "v1.1.1"
[NLopt]
rev = "v1.1.0"
[Pajarito]
rev = "4c7efa915bdc900b51d1c8290dc771403b11230a"
[ParametricOptInterface]
Expand Down Expand Up @@ -101,7 +105,7 @@
rev = "v0.7.3"
extension = true
[Xpress]
rev = "v0.16.2"
rev = "v0.17.0"

# =========================== non-jump-dev packages ========================== #

Expand Down Expand Up @@ -164,14 +168,8 @@
rev = "v0.2.2"
[Manopt]
user = "JuliaManifolds"
rev = "v0.4.69"
rev = "v0.5.0"
filename = "Readme.md"
[NEOSServer]
user = "odow"
rev = "v1.1.0"
[NLopt]
user = "JuliaOpt"
rev = "6fd18707b633978bfb3070b8fa514adcd9fe5289"
[Optim]
user = "JuliaNLSolvers"
rev = "v1.9.4"
Expand All @@ -186,7 +184,7 @@
rev = "0448763a5f8aa9d43a5ad684309c839f70d10fbf"
[Plasmo]
user = "plasmo-dev"
rev = "v0.6.0"
rev = "v0.6.2"
has_html = true
extension = true
[ProxSDP]
Expand Down
12 changes: 12 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ CurrentModule = JuMP
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).

## Version 1.23.1 (August 30, 2024)

### Fixed

- Fixed a bug with indicator constraints and the `in set` syntax (#3813)

### Other

- Updated packages in documentation (#3807)
- Updated the transitioning from MATLAB tutorial (#3809)
- Add tutorial [Performance problems with sum-if formulations](@ref) (#3810)

## Version 1.23.0 (August 13, 2024)

### Added
Expand Down

2 comments on commit d2de3ab

@odow
Copy link
Member Author

@odow odow commented on d2de3ab Aug 30, 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/114141

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.23.1 -m "<description of version>" d2de3ab561e22c9ce5c2579b3d93d60cda912749
git push origin v1.23.1

Please sign in to comment.