Skip to content

Commit

Permalink
Merge tag 'v0.1-4'
Browse files Browse the repository at this point in the history
- Non-scalar input to `frame_data()` and `tibble()` creates list-valued columns (#7).
- `frame_data()` and `tibble()` create empty `data_frame` if no rows are given (#20).
- `as_data_frame(NULL)` is 0-row 0-column data frame (#17, @jennybc).
- `lst(NULL)` doesn't raise an error anymore (#17, @jennybc), but always uses deparsed expression as name (even for `NULL`).
- `trunc_mat()` and `print()` use `width` argument also for zero-row and zero-column data frames (#18).
  • Loading branch information
Kirill Müller committed Jan 7, 2016
2 parents 292f606 + 681a3b3 commit c125e95
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Encoding: UTF-8
Package: tibble
Type: Package
Version: 0.1-3
Date: 2016-01-05
Version: 0.1-4
Date: 2016-01-07
Title: Simple data frames
Description: Data frames and data sources in "dplyr" style.
Authors@R: c( person("Hadley", "Wickham", , "hadley@rstudio.com", role
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Version 0.1-4 (2016-01-07)
===

- Non-scalar input to `frame_data()` and `tibble()` creates list-valued columns (#7).
- `frame_data()` and `tibble()` create empty `data_frame` if no rows are given (#20).
- `as_data_frame(NULL)` is 0-row 0-column data frame (#17, @jennybc).
- `lst(NULL)` doesn't raise an error anymore (#17, @jennybc), but always uses deparsed expression as name (even for `NULL`).
- `trunc_mat()` and `print()` use `width` argument also for zero-row and zero-column data frames (#18).


Version 0.1-3 (2016-01-05)
===

Expand Down

0 comments on commit c125e95

Please sign in to comment.