Skip to content

Commit 2ca8732

Browse files
authored
NEWS for 0.12
1 parent f1a03e0 commit 2ca8732

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

NEWS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# What's new in `IntervalArithmetic.jl`
22

3+
## v0.12
4+
5+
### API changes:
6+
7+
- The constructor `Interval(a, b)` has **had checks removed**, so **should not be used directly**; use `interval(a, b)` instead. This is for performance reasons. [#26](https://github.com/JuliaIntervals/IntervalArithmetic.jl/pull/26)
8+
9+
- The changes to `a..b` and `a±b` were reverted; these operations are now slow again, but give the narrowest possible interval when interpreting `a` and `b` as the human version (rather than the machine version). E.g. `0.3` is treated as `3/10`, not the exactly-representable floating-point number closest to 0.3. [#97](https://github.com/JuliaIntervals/IntervalArithmetic.jl/pull/97)
10+
11+
- Constructor `IntervalBox(II, Val{n})` added to easily make `IntervalBox`es that are `n` copies of a given interval [#79](https://github.com/JuliaIntervals/IntervalArithmetic.jl/pull/79)
12+
13+
314
## v0.11
415

516
### Supported versions of Julia

0 commit comments

Comments
 (0)