Skip to content

Commit

Permalink
Prep for v0.23.2 (#2923)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Mar 14, 2022
1 parent 7fbac64 commit 5e79e0b
Show file tree
Hide file tree
Showing 3 changed files with 20 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 = "0.23.1"
version = "0.23.2"

[deps]
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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/0.23.1/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/0.23.1) (`release-0.23` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/0.23.2/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/0.23.2) (`release-0.23` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
18 changes: 18 additions & 0 deletions docs/src/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Release notes

## Version 0.23.2 (March 14, 2022)

For a detailed list of the closed issues and pull requests from this release,
see the [tag notes](https://github.com/jump-dev/JuMP.jl/releases/tag/v0.23.2).
A summary of changes are as follows:

- New features:
- Added `relative_gap` to `solution_summary`
- `register` now throws an informative error if the function is not
differentiable using ForwardDiff. In some cases, the check in `register`
will encounter a false negative, and the informative error will be thrown at
run-time. This usually happens when the function is non-differentiable in a
subset of the domain.
- Bug fixes:
- Fixed a scoping issue when extending the `container` keyword of containers
- Documentation and maintenance:
- Docs updated to the latest version of each package

## Version 0.23.1 (March 2, 2022)

For a detailed list of the closed issues and pull requests from this release,
Expand Down

2 comments on commit 5e79e0b

@odow
Copy link
Member Author

@odow odow commented on 5e79e0b Mar 15, 2022

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/56617

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 v0.23.2 -m "<description of version>" 5e79e0b02c49c379e1ddf4d2317a668b3157e9e4
git push origin v0.23.2

Please sign in to comment.