Skip to content

Commit

Permalink
Prep for 0.21.9 (#2653)
Browse files Browse the repository at this point in the history
* Prep for 0.21.9

* Update NEWS.md
  • Loading branch information
odow committed Aug 1, 2021
1 parent 098bd91 commit 784533b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
JuMP release notes
==================

Version 0.21.9 (August 1, 2021)
---------------------------------

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.21.9).
A summary of changes are as follows:

- New features:
* Containers now support arbitrary container types by passing the type to the
`container` keyword and overloading `Containers.container`.
* `is_valid` now supports nonlinear constraints
* Added `unsafe_backend` for querying the inner-most optimizer of a JuMP
model.
* Nonlinear parameters now support the plural `@NLparameters` macro.
* Containers (e.g., `DenseAxisArray`) can now be used in vector-valued
constraints.
- Documentation, maintenance and performance:
* Various improvements to the documentation.

Version 0.21.8 (May 8, 2021)
---------------------------------

Expand Down
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.21.8"
version = "0.21.9"

[deps]
Calculus = "49dc2e85-a5d0-5ad3-a950-438e2897f1b9"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ JuMP is a domain-specific modeling language for [mathematical optimization](http
embedded in [Julia](https://julialang.org/). You can find out more about us by
visiting [jump.dev](https://jump.dev).

**Latest Release**: 0.21.8 (`release-0.21` branch):
**Latest Release**: 0.21.9 (`release-0.21` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
* Read the [Documentation](https://jump.dev/JuMP.jl/v0.21.8/)
* Read the [Documentation](https://jump.dev/JuMP.jl/v0.21.9/)
* Ask a question on the [Community forum]
* Testing status:
* Github Actions: [![Build Status](https://github.com/jump-dev/JuMP.jl/workflows/CI/badge.svg?branch=release-0.21)](https://github.com/jump-dev/JuMP.jl/actions?query=workflow%3ACI)
Expand Down

2 comments on commit 784533b

@odow
Copy link
Member Author

@odow odow commented on 784533b Aug 1, 2021

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

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.21.9 -m "<description of version>" 784533ba79c426709a1da52d71eb66eecc83f416
git push origin v0.21.9

Please sign in to comment.