Skip to content

Commit

Permalink
Prep for v1.7.0 (#3199)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Jan 25, 2023
1 parent 39e300b commit 5bd9f56
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 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.6.0"
version = "1.7.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.6.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.6.0) (`release-1.0` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.7.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.7.0) (`release-1.0` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Ipopt = "=1.1.0"
JSON = "0.21"
JSONSchema = "1"
Literate = "2.8"
MathOptInterface = "=1.11.0"
MathOptInterface = "=1.11.5"
Plots = "1"
SCS = "=1.1.3"
SQLite = "1"
Expand Down
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Pkg
Pkg.pkg"add Documenter#30baed5"
Pkg.pkg"add Documenter#71e9f40"
import Documenter
import Literate
import Test
Expand Down Expand Up @@ -282,7 +282,7 @@ function _add_moi_pages()
!!! warning
This documentation in this section is a copy of the official
MathOptInterface documentation available at
[https://jump.dev/MathOptInterface.jl/v1.11.0](https://jump.dev/MathOptInterface.jl/v1.11.0).
[https://jump.dev/MathOptInterface.jl/v1.11.5](https://jump.dev/MathOptInterface.jl/v1.11.5).
It is included here to make it easier to link concepts between JuMP and
MathOptInterface.
"""
Expand Down
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 v1.7.0 (January 25, 2023)

### Added

- Added support for `view` of a `Containers.DenseAxisArray` (#3152) (#3180)
- Added support for containers of variables in [`ComplexPlane`](@ref) (#3184)
- Added support for `minimum` and `maximum` generators in nonlinear expressions
(#3189)
- Added `SnoopPrecompile` statements that reduce the time-to-first-solve in
Julia 1.9 (#3193) (#3195) (#3196) (#3197)

### Other

- Large refactoring of the tests (#3166) (#3167) (#3168) (#3169) (#3170) (#3171)
- Remove unreachable code due to `VERSION` checks (#3172)
- Document how to test JuMP extensions (#3174)
- Fix method ambiguities in `Containers` (#3173)
- Improve error message that is thrown when `=` is used instead of `==` in
the [`@constraint`](@ref) macro (#3178)
- Improve the error message when `Bool` is used instead of `Bin` in the
[`@variable`](@ref) macro (#3180)
- Update versions of the documentation (#3185)
- Tidy the import of packages and remove unnecessary prefixes (#3186) (#3187)
- Refactor `src/JuMP.jl` by moving methods into more relevant files (#3188)
- Fix docstring of [`Model`](@ref) not appearing in the documentation (#3198)

## Version v1.6.0 (January 1, 2023)

### Added
Expand Down

2 comments on commit 5bd9f56

@odow
Copy link
Member Author

@odow odow commented on 5bd9f56 Jan 25, 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/76315

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.7.0 -m "<description of version>" 5bd9f56cc00b369950ef18b040a08a7eb952f5df
git push origin v1.7.0

Please sign in to comment.