Skip to content

Commit d4c077b

Browse files
committed
Fix an ambiguity and extend readme.
1 parent c4949b3 commit d4c077b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

Changelog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
## [0.6.0] unreleased
1010

1111
This is a breaking release in order to move a few parts to a unified naming and since weæ
12-
discontinue the `JuMP` extension. It will at some point return as a separate package.
12+
discontinue the `JuMP` extension. It will at some point return as a separate package, see (#532)
13+
for the last of the discussions around that.
1314

1415
### Fixed
1516

@@ -20,7 +21,7 @@ discontinue the `JuMP` extension. It will at some point return as a separate pac
2021

2122
### Changes
2223

23-
* `NonlinearLeastSquaresObjective` is now called `ManifoldNonlinearLeastSquaresObjective`.
24+
* `NonlinearLeastSquaresObjective` is now called `ManifoldNonlinearLeastSquaresObjective` (#569).
2425
* Improved formatting of the references in the Readme.md (#586)
2526

2627
## [0.5.34] March 3, 2026

src/solvers/Lanczos.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function set_parameter!(ls::LanczosState, ::Val{:σ}, σ)
8686
ls.σ = σ
8787
return ls
8888
end
89-
function Base.show(io, ls::LanczosState)
89+
function Base.show(io::IO, ls::LanczosState)
9090
print(io, "LanczosState(;"),
9191
print(io, "X = "); print(io, ls.X); print(io, ", ")
9292
print(io, "σ = "); print(io, ls.X); print(io, ", ")

0 commit comments

Comments
 (0)