diff --git a/DESCRIPTION b/DESCRIPTION index 66289ee19..cc2a78641 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,31 +1,20 @@ Package: tibble Encoding: UTF-8 -Version: 0.3-2 +Version: 0.3-3 Title: Simple Data Frames Description: Provides a 'tbl_df' class that offers better checking and - printing capabilities than traditional data frames. -Authors@R: c( - person("Hadley", "Wickham", , "hadley@rstudio.com", "aut"), - person("Romain", "Francois", , "romain@r-enthusiasts.com", "aut"), - person("Kirill", "Müller", , "krlmlr+r@mailbox.org", c("aut", "cre")), - person("RStudio", role = "cph") - ) + printing capabilities than traditional data frames. +Authors@R: c( person("Hadley", "Wickham", , "hadley@rstudio.com", + "aut"), person("Romain", "Francois", , + "romain@r-enthusiasts.com", "aut"), person("Kirill", "Müller", + , "krlmlr+r@mailbox.org", c("aut", "cre")), person("RStudio", + role = "cph") ) URL: https://github.com/krlmlr/tibble BugReports: https://github.com/krlmlr/tibble/issues Depends: R (>= 3.1.2) -Imports: - methods, - assertthat, - utils, - lazyeval (>= 0.1.10), - Rcpp -Suggests: - testthat, - knitr, - rmarkdown, - Lahman (>= 3.0.1), - magrittr, - microbenchmark +Imports: methods, assertthat, utils, lazyeval (>= 0.1.10), Rcpp +Suggests: testthat, knitr, rmarkdown, Lahman (>= 3.0.1), magrittr, + microbenchmark LinkingTo: Rcpp LazyData: yes License: MIT + file LICENSE diff --git a/NEWS.md b/NEWS.md index ba5a79f4a..1da92edf8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,12 @@ +Version 0.3-3 (2016-03-18) +=== + +- `[[.tbl_df()` now falls back to regular subsetting when used with anything other than a single string (#29). +- When used in list-columns, S4 objects only print the class name rather than the full class hierarchy (#33). +- Further cleanup for `repair_names()`. +- Add test that `[.tbl_df()` does not change class (#41, @jennybc). + + Version 0.3-2 (2016-03-17) ===