Skip to content

Commit

Permalink
Prep for v1.8.1 (#3228)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Feb 22, 2023
1 parent 00064c3 commit 203a5c7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 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.8.0"
version = "1.8.1"

[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.8.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.8.0) (`release-1.0` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.8.1/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.8.1) (`release-1.0` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
18 changes: 17 additions & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ 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.1 (February 23, 2023)

### Fixed

- Fixed support for `init` in nonlinear generator expressions (#3226)

### Other

- Use and document `import MathOptInterface as MOI` (#3222)
- Removed references in documentation to multiobjective optimization being
unsupported (#3223)
- Added tutorial on multi-objective portfolio optimization (#3227)
- Refactored some of the conic tutorials (#3229)
- Fixed typos in the documentation (#3230)
- Added tutorial on parallelism (#3231)

## Version 1.8.0 (February 16, 2023)

### Added
Expand All @@ -22,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fix a bug in [`lp_sensitivity_report`](@ref) by switching to an explicit
- Fixed 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)

Expand Down

2 comments on commit 203a5c7

@odow
Copy link
Member Author

@odow odow commented on 203a5c7 Feb 22, 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/78287

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.1 -m "<description of version>" 203a5c77383dc8336d7b3fd24048fc8e9b04d9ff
git push origin v1.8.1

Please sign in to comment.