From 046f3711a3b065f60ddf8545c34159bdd66c7108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 18 Mar 2016 08:39:28 +0100 Subject: [PATCH 1/3] bump version to 0.3-3 --- DESCRIPTION | 31 ++++++++++--------------------- 1 file changed, 10 insertions(+), 21 deletions(-) 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 From 4b6a6d1f1fe89ac3bd23bb34e4c1f16dffcedb6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 18 Mar 2016 08:40:08 +0100 Subject: [PATCH 2/3] NEWS as generated from Hadley's comments --- NEWS.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/NEWS.md b/NEWS.md index ba5a79f4a..7da8f839a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +Version 0.3-3 (2016-03-18) +=== + +`[[.tbl_df` now falls back to regular subsetting when used with anything other than a single string. +Fixes #29 +When used in list-columns, S4 objects only print the class name than the full class hierarchy. Fixes #33. +Also give the file a better name +add test that [ does not change class + + Version 0.3-2 (2016-03-17) === From 3cc26ebd3b6f6c98699949997753394e8b71a1cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 18 Mar 2016 08:42:11 +0100 Subject: [PATCH 3/3] edited NEWS --- NEWS.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index 7da8f839a..1da92edf8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,11 +1,10 @@ Version 0.3-3 (2016-03-18) === -`[[.tbl_df` now falls back to regular subsetting when used with anything other than a single string. -Fixes #29 -When used in list-columns, S4 objects only print the class name than the full class hierarchy. Fixes #33. -Also give the file a better name -add test that [ does not change class +- `[[.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)