bifurcationkit / BifurcationKit.jl

A Julia package to perform Bifurcation Analysis
https://bifurcationkit.github.io/BifurcationKitDocs.jl/stable
Other
288 stars 34 forks source link

Tag a new release #154

Closed TorkelE closed 1 month ago

TorkelE commented 1 month ago

Would it be possible to tag a new release?

I think a while ago it was changed so that you could pass ContinuationPar using

opts_br = ContinuationPar(p_min = p_span[1], p_max = p_span[2], max_steps = 1000)
bif_dia = bifurcationdiagram(bprob, PALC(), 2, opts_br; bothside = true)

instead of

opts_br = ContinuationPar(p_min = p_span[1], p_max = p_span[2], max_steps = 1000)
bif_dia = bifurcationdiagram(bprob, PALC(), 2, (args...) -> opts_br; bothside = true)

However, now when I rewrite my docs to use this, I get an error. I noted that there hadn't been a release in a while, maybe this is the reason?

rveltz commented 1 month ago

I am on it. KrylovKit is blocking it for now.

rveltz commented 1 month ago

done!

rveltz commented 3 weeks ago

Is this resolved?