Skip to content

Commit

Permalink
Prep for v0.16.0 (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed May 21, 2024
1 parent 7a8c0df commit d9a76e2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ CurrentModule = Convex
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).

## v0.16.0 (unreleased)
## v0.16.0 (May 21, 2024)

This release contains a large number of changes, including some breaking
changes.
changes. However, despite the large number of changes, most user code should not need
to change.

If you encounter an issue updating to this release, please open a GitHub issue,
or post on the JuMP community forum: https://jump.dev/forum.

### Breaking

Expand Down Expand Up @@ -40,7 +44,7 @@ changes.
but it can result in subtle differences, particularly for code like
`x[i, :] * y[i, :]'`: this used to be equivalent to the inner product, but it
is now the outer product. In Base Julia, this is the outer product, so the
previous code may be been silently broken (#624)
previous code may have been silently broken (#624)
* The syntaxes `dot(*)`, `dot(/)` and `dot(^)` have been removed in favor of
explicit broadcasting (`x .* y`, `x ./ y`, and `x .^ y`). These were (mild)
type piracy. In addition, `vecdot(x,y)` has been removed. Call
Expand Down Expand Up @@ -102,11 +106,13 @@ changes.
* Fixed performance issues in a number of issues related to scalar indexing
(#618), (#619), (#620), (#621), (#625), (#634)
* Fixed `show` for `Problem` (#649)
* `sumsquares` has a more efficient formulation (#678)
* Fixed `vexity` of `lieb_ando` (#684)

### Other

* Improved the documentation (#506), (#517), (#529), (#571), (#573), (#574),
(#576), (#579), (#587), (#594), (#628), (#652), (#656), (#666), (#674)
(#576), (#579), (#587), (#594), (#628), (#652), (#656), (#666), (#674), (#686)
* Refactored the tests into a functional form (#532)
* Updated `Project.toml` (#535)
* Added `test/Project.toml` (#536)
Expand Down

2 comments on commit d9a76e2

@odow
Copy link
Member Author

@odow odow commented on d9a76e2 May 21, 2024

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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

Please sign in to comment.