Skip to content

Commit

Permalink
Prep for v1.13.0 (#3435)
Browse files Browse the repository at this point in the history
* Prep for v1.13.0

* Apply suggestions from code review

* Apply suggestions from code review

* Update docs/src/changelog.md

* Update docs/src/changelog.md

* Update docs/src/changelog.md

Co-authored-by: Miles Lubin <mlubin@google.com>

* Update docs/src/changelog.md

* Update docs/src/changelog.md

---------

Co-authored-by: Oscar Dowson <odow@users.noreply.github.com>
Co-authored-by: Miles Lubin <mlubin@google.com>
  • Loading branch information
3 people committed Jul 27, 2023
1 parent 89e5623 commit 72b91d7
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 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.12.0"
version = "1.13.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.12.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.12.0) (`release-1.0` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.13.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.13.0) (`release-1.0` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
25 changes: 25 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@ 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.13.0 (July 27, 2023)

### Added

- Added support for generic number types (#3377) (#3385)
- Added fallback for [`MOI.AbstractSymmetricMatrixSetTriangle`](@ref) and
[`MOI.AbstractSymmetricMatrixSetSquare`](@ref) (#3424)

### Fixed

- Fixed [`set_start_values`](@ref) with
[`MOI.Bridges.Objective.SlackBridge`](@ref) (#3422)
- Fixed flakey doctest in `variables.md` (#3425)
- Fixed names on `CITATION.bib` (#3423)

### Other

- Added Loraine.jl to the installation table (#3426)
- Removed Penopt.jl from packages.toml (#3428)
- Improved problem statement in cannery example of tutorial (#3430)
- Minor cleanups in [`Containers.DenseAxisArray`](@ref) implementation (#3429)
- Changed `nested_problems.jl`: outer/inner to upper/lower (#3433)
- Removed second SDP relaxation in OPF tutorial
(#3432)

## Version 1.12.0 (June 19, 2023)

### Added
Expand Down

2 comments on commit 72b91d7

@odow
Copy link
Member

@odow odow commented on 72b91d7 Jul 27, 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/88476

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.13.0 -m "<description of version>" 72b91d7bc113971c1d1847069ae9279e16848162
git push origin v1.13.0

Please sign in to comment.