From 45843133bd2e074be228e702a9a7c9b55e031efe Mon Sep 17 00:00:00 2001 From: "David P. Sanders" Date: Mon, 6 Mar 2017 16:34:04 -0600 Subject: [PATCH] Add NEWS for 0.7 release (#222) * Add NEWS for 0.7 release * Tweak NEWS * Include end of support for Julia 0.4 message --- NEWS.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/NEWS.md b/NEWS.md index c7842e2..d66b7f8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,25 @@ # What's new in ValidatedNumerics.jl +## v0.7 + +### End of support for Julia v0.4 +- v0.7 is the last version to include support for Julia v0.4 + +### Breaking API changes +- Deprecate `displaymode`, replacing it with `setdisplay`, with simplified syntax #210: +``` +setdisplay(:full) +``` + +### Added features +- Fast integer power function `pow` #208 +- `parse(Interval, string)` (extends and exports previously internal function) #215 +- `bisect` function in `ValidatedNumerics.RootFinding` for bisecting `Interval`s and `IntervalBox`es #217 + +### Other +- Many tests use `Base.Test` instead of `FactCheck` #205 +- Miscellaneous bugfixes + ## v0.6 - Add a plot recipe for (only) 2D `IntervalBox`es using `RecipesBase.jl`. This enables plotting using `Plots.jl`: an individual `IntervalBox` `X` using `plot(X)`,