Skip to content

Commit

Permalink
Merge tag 'v0.3-3'
Browse files Browse the repository at this point in the history
- `[[.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).
  • Loading branch information
Kirill Müller committed Mar 18, 2016
2 parents 3d99995 + 0cc8550 commit 21c6009
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
31 changes: 10 additions & 21 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", "aut"),
person("Romain", "Francois", , "[email protected]", "aut"),
person("Kirill", "Müller", , "[email protected]", c("aut", "cre")),
person("RStudio", role = "cph")
)
printing capabilities than traditional data frames.
Authors@R: c( person("Hadley", "Wickham", , "[email protected]",
"aut"), person("Romain", "Francois", ,
"[email protected]", "aut"), person("Kirill", "Müller",
, "[email protected]", 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
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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)
===

Expand Down

0 comments on commit 21c6009

Please sign in to comment.