Skip to content

Commit

Permalink
Merge pull request #314 from SciML/releasenotes
Browse files Browse the repository at this point in the history
add release notes
  • Loading branch information
ChrisRackauckas authored Jun 1, 2023
2 parents f3c6dcd + e05acdf commit 39e538b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/pages.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ pages = ["index.md",
"Solvers" => Any["solvers/solvers.md"],
"Advanced" => Any["advanced/developing.md"
"advanced/custom.md"],
"Release Notes" => "release_notes.md"
]
10 changes: 10 additions & 0 deletions docs/src/release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Release Notes

## v2.0

* `LinearCache` changed from immutable to mutable. With this, the out of place interfaces like
`set_A` were deprecated for simply mutating the cache, `cache.A = ...`. This fixes some
correctness checks and makes the package more robust while improving performance.
* The default algorithm is now type-stable and does not rely on a dynamic dispatch for the choice.
* IterativeSolvers.jl and KrylovKit.jl were made into extension packages.
* Documentation of the solvers has changed to docstrings

0 comments on commit 39e538b

Please sign in to comment.