forked from mllg/checkmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
98 lines (85 loc) · 4.3 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Version 1.6.3 (2015-xx-xx)
-------------------------------------------------------------------------------
* Assertions can now be collected (via `makeAssertCollection()`) and reported
(via `reportAssertions()`).
* `qassert()` can now perform bound checks on strings
Version 1.6.2 (2015-07-26)
-------------------------------------------------------------------------------
* Fixed a compile-time warning
* checkmate does not import `testthat` anymore in order to speed up
package loading times and to keep the dependencies at a minimum.
The `expect_*` family of functions can still be used, the namespace will be
loaded on demand.
Version 1.6.1 (2015-07-16)
-------------------------------------------------------------------------------
* New family of functions: `expect_*` is intended to be used in combination
with testthat. But note that functions `expect_null()` and `expect_named()`
are not provided to avoid name clashes with testthat.
* Also added `qexpect()` and `qexpectr()`.
* Added argument `all.missing` for checks of matricies and data frames.
* Added `anyNaN()`.
* Clearified documentation for `assert()` and `allMissing()`.
* Fixed a bug where bound checks were performed on missing values.
* Fixed a bug where missingness was not correctly detected in data frames.
Version 1.6.0 (2015-06-19)
-------------------------------------------------------------------------------
* Started to support long vectors.
* Added a short vignette.
* Improved documentation.
* New argument "combine" for `assert()` to allow combining check functions with
an AND instead of an OR.
Version 1.5.3 (2015-05-13)
-------------------------------------------------------------------------------
* Fixed a bug regarding the number of rows in zero-column data frames.
* Fixed a bug where the type of lists with dimension attribute where
reported as "array" or "matrix".
* Family *Array: new arguments "min.d" and "max.d".
* Family *Array and *Matrix: Argument "mode" now additionally accepts strings
"list" and "atomic".
Version 1.5.2 (2015-03-19)
-------------------------------------------------------------------------------
* Fixed: (assert|check|test)Character(NA_character_, min.chars = 1) does not
eval to TRUE anymore.
* New arguments for *Factor functions: (n|min|max).levels.
* Improved error messages for type and length checks.
* Improved error messages for missing arguments.
Version 1.5.1 (2014-12-13)
-------------------------------------------------------------------------------
* Included a workaround for R's nrow and ncol to properly worh with data frames.
* Fixed a bug handling complex number in checks for integerish values.
* Improved documentation.
Version 1.5.0 (2014-10-18)
-------------------------------------------------------------------------------
* Added checkNames.
* Added checkPercentage.
* Added anyInfinite.
* Fixed error messages for some dimension checks.
* Fixed an error while checking numerics for finiteness.
Version 1.4 (2014-09-03)
-------------------------------------------------------------------------------
* Fixed a bug where rownames and colnames of data.frames where not retrieved
correctly.
* Fixed a bug in checkVector (wrong order of arguments in call to C).
* Filesystem access: checks for write and executable rights are now disabled
on windows.
Version 1.3 (2014-08-15)
-------------------------------------------------------------------------------
* Fixed a bug where logical values passed a check for numerics in "qassert".
* Family *SetEqual: new argument "ordered".
* checkPathForOutput: new argument "overwrite".
Version 1.2 (2014-07-21)
-------------------------------------------------------------------------------
* Fixed bug in checkList.
* Fixed dimnames check on empty matrices and data frames.
* Added *SetEqual functions.
Version 1.1 (2014-06-28)
-------------------------------------------------------------------------------
* Improved error messages in assert* functions.
* New argument 'empty.ok' for *Subset functions.
* assert() now returns TRUE invisibly (as documented).
* Fixed handling of zero-length arguments in checkFunction.
* Fixed error message if duplicated values where found.
* Fixed a missing check for row names in checkMatrix and checkDataFrame.
Version 1.0 (2014-06-17)
-------------------------------------------------------------------------------
* Initial release on CRAN.