Skip to content

Commit bbd1275

Browse files
committed
Prepare for release
1 parent ea2806a commit bbd1275

File tree

8 files changed

+324
-828
lines changed

8 files changed

+324
-828
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: tidyr
22
Title: Easily Tidy Data with `spread()` and `gather()` Functions
3-
Version: 0.5.1.9001
3+
Version: 0.6.0
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", c("aut", "cre")),
66
person("RStudio", role = "cph")

NEWS.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
1-
# tidyr 0.5.1.9000
1+
# tidyr 0.6.0
2+
3+
## API changes
4+
5+
* `drop_na()` removes observations which have `NA` in the given variables. If no
6+
variables are given, all variables are considered (#194, @janschulz).
27

38
* `extract_numeric()` has been deprecated (#213).
49

10+
* Renamed `table4` and `table5` to `table4a` and `table4b` to make their
11+
connection more clear. The `key` and `value` variables in `table2` have
12+
been renamed to `type` and `count`.
13+
14+
## Bug fixes and minor improvements
15+
516
* `expand()`, `crossing()`, and `nesting()` now silently drop zero-length
617
inputs.
718

819
* `crossing_()` and `nesting_()` are versions of `crossing()` and `nesting()`
920
that take a list as input.
1021

11-
* Renamed `table4` and `table5` to `table4a` and `table4b` to make their
12-
connection more clear. The `key` and `value` variables in `table2` have
13-
been renamed to `type` and `count`.
14-
1522
* `full_seq()` works correctly for dates and date/times.
1623

17-
* `drop_na()` removes observations which have `NA` in the given variables. If no
18-
variables are given, all variables are considered (#194, @janschulz).
19-
2024
# tidyr 0.5.1
2125

2226
* Restored compatibility with R < 3.3.0 by avoiding `getS3method(envir = )` (#205, @krlmlr).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ library(dplyr)
5757
If you'd like to learn more about these data reshaping operators, I'd recommend the following papers:
5858

5959
* [Wrangler: Interactive visual specification of data transformation scripts](http://vis.stanford.edu/papers/wrangler)
60-
* [An interactive framework for data cleaning](http://www.eecs.berkeley.edu/Pubs/TechRpts/2000/CSD-00-1110.pdf) (Potter's wheel)
60+
* [An interactive framework for data cleaning](https://www.eecs.berkeley.edu/Pubs/TechRpts/2000/CSD-00-1110.pdf) (Potter's wheel)
6161
* [On efficiently implementing SchemaSQL on a SQL database system](http://www.vldb.org/conf/1999/P45.pdf)
6262

cran-comments.md

Lines changed: 11 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,25 @@
1-
This is basically a resubmission of tidyr 0.5.0 - I've fixed a small buglet that caused a failure on R-oldrel. Sorry for only noticing it after the release! (I've started routinely testing on oldrel so hopefully this will be less of a problem in the future)
2-
3-
---
4-
51
## Test environments
6-
* local OS X install, R 3.2.3
7-
* ubuntu 12.04 (on travis-ci), R 3.2.3
2+
* local OS X install, R 3.3.1
3+
* ubuntu 12.04 (on travis-ci), R 3.3.1
84
* win-builder (devel and release)
95

106
## R CMD check results
117

12-
0 errors | 0 warnings | 2 note
8+
0 errors | 0 warnings | 1 note
139

1410
* License components with restrictions and base license permitting such:
1511
MIT + file LICENSE
16-
17-
* Missing or unexported object: 'dplyr::everything'
1812

19-
This is a bit of a hack to get tidyr working with both dplyr 0.4 and
20-
dplyr 0.5. It'll disappear once dplyr 0.5 is out.
13+
* Found the following (possibly) invalid URLs:
14+
https://www.eecs.berkeley.edu/Pubs/TechRpts/2000/CSD-00-1110.pdf
15+
16+
Not sure what the problem is here: curl reports "error:14077102:SSL
17+
routines:SSL23_GET_SERVER_HELLO:unsupported protocol" but the page
18+
loads fine in my browser.
2119

2220
## Downstream dependencies
2321

24-
I ran `R CMD check` on all 73 reverse dependencies.
22+
I ran `R CMD check` on all 90 reverse dependencies.
2523
Results at https://github.com/hadley/tidyr/tree/master/revdep/.
2624

27-
Problems are summarised below. The are 8 problems caused by a deliberate change to tidyr. I notified authors on May 26 and again today.
28-
29-
### Caused by tidyr update
30-
31-
A number of packages fail because tidyr now returns objects of class c("tbl_df", "tbl", "data.frame"), and the $.tbl_df method throws error instead of returning NULL for non-existant variables:
32-
33-
* broom: checking examples ... ERROR
34-
* ezsummary: checking tests ... ERROR
35-
* ggmcmc: checking examples ... ERROR
36-
* heemod: checking tests ... ERROR
37-
* pixiedust: checking re-building of vignette outputs ... WARNING
38-
* quickpsy: checking examples ... ERROR
39-
* R6Frame: checking tests ... ERROR
40-
* RNeXML: checking examples ... ERROR
41-
42-
Other problems:
43-
44-
* pmc: checking tests ... ERROR
45-
I'm not sure what the cause of this one is
46-
47-
* rgho: checking examples ... ERROR
48-
Caused by assuming that column names are characters (which they should be!)
49-
50-
### Unrelated to tidyr
51-
52-
* ggRandomForests: checking examples ... ERROR
53-
This same error is present on CRAN
54-
55-
* glycanr: checking examples ... ERROR
56-
Examples is missing check for installation of suggested package
57-
58-
* tigger: checking re-building of vignette outputs ... WARNING
59-
Vigentte is missing check missing check for installation of suggested package
25+
As far as I can tell, there were no problems related to this tidyr release.

0 commit comments

Comments
 (0)