Skip to content

Commit

Permalink
Prep for v0.22.2 (#2849)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Jan 10, 2022
1 parent f6ff02d commit f63cdaa
Show file tree
Hide file tree
Showing 3 changed files with 23 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.22.1"
version = "0.22.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.22.1/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/0.22.1) (`release-0.22` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/0.22.2/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/0.22.2) (`release-0.22` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
21 changes: 21 additions & 0 deletions docs/src/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Release notes

## Version 0.22.2 (January 10, 2021)

- New features:
- The function `all_nl_constraints` now returns all nonlinear constraints
in a model
- `start_value` and `set_start_value` can now be used to get and set the
primal start for constraint references
- Plural macros now return a tuple containing the elements that were defined
instead of `nothing`
- Anonymous variables are now printed as `_[i]` where `i` is the index of the
variable instead of `noname`. Calling `name(x)` still returns `""` so this
is non-breaking.
- Bug fixes:
- Fixed handling of `min` and `max` in nonlinear expressions
- CartesianIndex is no longer allowed as a key for DenseAxisArrays.
- Documentation, maintenance:
- Improved the performance of GenericAffExpr
- Added a tutorial on the Travelling Salesperson Problem
- Added a tutorial on querying the Hessian of a nonlinear program
- Added documentation on using custom solver binaries.

## Version 0.22.1 (November 29, 2021)

- New features:
Expand Down

2 comments on commit f63cdaa

@odow
Copy link
Member Author

@odow odow commented on f63cdaa Jan 10, 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/52077

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.22.2 -m "<description of version>" f63cdaa81dbf067a6bb89b5d8537949b2efcb505
git push origin v0.22.2

Please sign in to comment.