Skip to content

Commit

Permalink
Prep for v1.18.0 (#3636)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Jan 2, 2024
1 parent 597ef39 commit 66184ef
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 12 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.17.0"
version = "1.18.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ embedded in [Julia](https://julialang.org/). You can find out more about us by
visiting [jump.dev](https://jump.dev).


**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.17.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.17.0) (`release-1.0` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.18.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.18.0) (`release-1.0` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
4 changes: 2 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Clarabel = "=0.6.0"
DataFrames = "1"
DimensionalData = "0.24"
Distributions = "0.25"
Documenter = "=1.1.2"
Documenter = "=1.2.1"
DocumenterCitations = "1"
Dualization = "0.5"
GLPK = "=1.1.3"
Expand All @@ -54,7 +54,7 @@ JSONSchema = "1"
Literate = "2.8"
MathOptInterface = "=1.23.0"
MultiObjectiveAlgorithms = "=1.3.1"
PATHSolver = "=1.7.0"
PATHSolver = "=1.7.1"
Plots = "1"
SCS = "=2.0.0"
SQLite = "1"
Expand Down
16 changes: 8 additions & 8 deletions docs/packages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
[Clp]
rev = "v1.0.3"
[CPLEX]
rev = "v1.0.1"
rev = "v1.0.2"
[CSDP]
rev = "3a2e4c7c48af7660a5ba258a4cb6549ab0970366"
[DiffOpt]
Expand All @@ -59,7 +59,7 @@
[Ipopt]
rev = "v1.5.1"
[KNITRO]
rev = "v0.14.0"
rev = "v0.14.1"
[MiniZinc]
rev = "v0.3.6"
[MosekTools]
Expand All @@ -70,7 +70,7 @@
[Pajarito]
rev = "4c7efa915bdc900b51d1c8290dc771403b11230a"
[ParametricOptInterface]
rev = "v0.5.1"
rev = "v0.7.0"
extension = true
[Pavito]
rev = "v0.3.7"
Expand All @@ -94,7 +94,7 @@
rev = "v0.7.3"
extension = true
[Xpress]
rev = "v0.16.1"
rev = "v0.16.2"

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

Expand All @@ -117,7 +117,7 @@
has_html = true
[COPT]
user = "COPT-Public"
rev = "v1.1.12"
rev = "v1.1.13"
[COSMO]
user = "oxfordcontrol"
rev = "v0.8.8"
Expand Down Expand Up @@ -158,7 +158,7 @@
has_html = true
[Manopt]
user = "JuliaManifolds"
rev = "v0.4.43"
rev = "v0.4.44"
filename = "Readme.md"
[NEOSServer]
user = "odow"
Expand All @@ -170,7 +170,7 @@
rev = "443706e34c2619acbe65281c60bbe850ca4a8fac"
[PATHSolver]
user = "chkwon"
rev = "v1.7.0"
rev = "v1.7.1"
[Percival]
user = "JuliaSmoothOptimizers"
rev = "0448763a5f8aa9d43a5ad684309c839f70d10fbf"
Expand All @@ -193,4 +193,4 @@
extension = true
[Tulip]
user = "ds4dm"
rev = "069cdda082dfde31ef7ee935c96e833a3b96b33c"
rev = "v0.9.6"
26 changes: 26 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ 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.18.0 (January 2, 2024)

### Added

- This release includes a large refactoring of the macro code that closes a
roadmap item (#3629)
Contributing pull requests include (#3600), (#3603), (#3606), (#3607),
(#3610), (#3611), (#3612), (#3613), (#3614), (#3615), (#3617), (#3618),
(#3619), (#3620), (#3621), (#3631), (#3632), (#3633)

### Fixed

- Fixed error for unsupported objective sense (#3601)
- Fixed `text/latex` printing of [`GenericNonlinearExpr`](@ref) (#3609)
- Fixed compat bounds of `stdlib` packages (#3626)
- Fixed a bug that can accidentally modify the user's expressions in a macro (#3639)
- Fixed a bug converting `AffExpr` to [`GenericNonlinearExpr`](@ref) (#3642)

### Other

- Added `DisjunctiveProgramming`to `extension-tests` (#3597)
- Added `DisjunctiveProgramming`to docs (#3598)
- Added DocumenterCitations to the docs (#3596), (#3630)
- Migrate from SnoopPrecompile to PrecompileTools (#3608)
- Minor documentation updates (#3623), (#3628), (#3635), (#3640), (#3643)

## Version 1.17.0 (December 4, 2023)

### Added
Expand Down

2 comments on commit 66184ef

@odow
Copy link
Member Author

@odow odow commented on 66184ef Jan 2, 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/98032

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.18.0 -m "<description of version>" 66184ef69918bbf5cbe90435c76e8e8105ee9b23
git push origin v1.18.0

Please sign in to comment.