Important notices about MAJOR and MINOR version releases.
-
v1.5.0
: Minimum Julia version nowv1.7
. Removes custom implementation of fastdelaunayedges
. -
v1.4.0
: Provides a new function for preparing data for plotting,getplotdata
. A fix forrectangulardomain
is also included that, as a side effect, shifts the nodes produced by the oldrectangulardomain
by a half spacing. This may cause slightly different root and pole locations fromgrpf
. -
v1.3.0
:GRPFParams
no longer parameterizes the type of thetolerance
field and instead it is fixed asFloat64
. There is no reasontolerance
would have been anything other thanFloat64
because the precision is limited toFloat64
by the underlyingVoronoiDelaunay.jl
triangulation procedure. -
v1.2.0
:GRPFParams
are nowmutable
structs. Although this can be considered a breaking change because two structs which are equal are now not identical, in the sense thata == b
buta !== b
, most users should not have any code broken by this change. -
v1.1.0
: Calls to the user-provided complex function can be multithreaded using Julia's@threads
capability. By default,multithreading = false
. It can be enabled in theGRPFParams
struct.