Skip to content

Commit

Permalink
Prep for v1.8.0 (#3221)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Feb 16, 2023
1 parent fc5418b commit 7d27598
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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.7.0"
version = "1.8.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand All @@ -13,7 +13,7 @@ SnoopPrecompile = "66db9d55-30c0-4569-8b51-7e840670fc0c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
MathOptInterface = "1.11"
MathOptInterface = "1.12"
MutableArithmetics = "1"
OrderedCollections = "1"
SnoopPrecompile = "1"
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.7.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.7.0) (`release-1.0` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.8.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.8.0) (`release-1.0` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
30 changes: 30 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,36 @@ 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.8.0 (February 16, 2023)

### Added

- Added `-->` syntax support for indicator constraints. The old syntax of `=>`
remains supported (#3207)
- Added `<-->` syntax for reified constraints. For now, few solvers support
reified constraints (#3206)
- Added [`fix_discrete_variables`](@ref). This is most useful for computing the
dual of a mixed-integer program (#3208)
- Added support for vector-valued objectives. For details, see the
[Multi-objective knapsack](@ref) tutorial (#3176)

### Fixed

- Fix a bug in [`lp_sensitivity_report`](@ref) by switching to an explicit
LU factorization of the basis matrix (#3182)
- Fixed a bug that prevented `[; kwarg]` arguments in macros (#3220)

### Other

- Minor fixes to the documentation (#3200) (#3201) (#3203) (#3210)
- Added tutorial [Constraint programming](@ref) (#3202)
- Added more examples to [Tips and Tricks](@ref conic_tips_and_tricks)
- Remove `_distance_to_set` in favor of `MOI.Utilities.distance_to_set` (#3209)
- Improve [The diet problem](@ref) tutorial by adding the variable as a column
in the dataframe (#3213)
- Improve [The knapsack problem example](@ref) tutorial (#3216) (#3217)
- Added the [Ellipsoid approximation](@ref) tutorial (#3218)

## Version 1.7.0 (January 25, 2023)

### Added
Expand Down

2 comments on commit 7d27598

@odow
Copy link
Member Author

@odow odow commented on 7d27598 Feb 16, 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/77753

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.8.0 -m "<description of version>" 7d2759843a45497c28747a6dd73eae45aea78126
git push origin v1.8.0

Please sign in to comment.