Releases: JuliaIntervals/CRlibm.jl
Releases · JuliaIntervals/CRlibm.jl
v1.0.1
v1.0.0
v0.8.0
Bug fix
v0.7.0: Support only Julia 0.7 and above
Remove Compat and make tests run on Windows (#27) * Remove Compat requirement * New appveyor.yml * Remove Test cruft * Add variable with MPFR status and use it to avoid tests * warn -> @warn
Drop support for Julia < 0.6
And a bug fix for correct rounding of wrapped MPFR functions.
Do not export functions
- Functions are no longer exported from the
CRlibm
module, so must be called as
CRlibm.sin(0.5, RoundDown)
. - Add
CRlibm.sin(0.5)
as shorthand forCRlibm.sin(0.5, RoundNearest)
.
API change: Must now call `CRlibm.setup()` explicitly
Do not run setup on import (#16) * Rename setup_CRlibm to setup and don't call it * Add NEWS for 0.3 about API change to not export setup * Add CRlibm.setup() to README * Correct version in NEWS * Add info message
Now works on Windows
CRlibm now works correctly (albeit slowly) on Windows by correctly wrapping MPFR, which was previously broken. Thanks to @hwatson for noticing the problem and testing. cf JuliaIntervals/ValidatedNumerics.jl#179