Skip to content

Commit

Permalink
Merge tag 'v1.3.3'
Browse files Browse the repository at this point in the history
- Added `format()` and `print()` methods for both `tbl` and `tbl_df` classes, to protect against malformed tibbles that inherit from `"tbl_df"` but not `"tbl"`, as created e.g. by `ungroup()` in dplyr 0.5.0 and earlier (#256, #263).
- The column width for non-syntactic columns is computed correctly again (#258).
- Printing a tibble doesn't apply quote escaping to list columns.
- Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan).
- Remove unused import declaration for assertthat.
  • Loading branch information
krlmlr committed May 29, 2017
2 parents 393bd83 + db37634 commit b2275d5
Show file tree
Hide file tree
Showing 15 changed files with 5,589 additions and 626 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tibble
Encoding: UTF-8
Version: 1.3.2
Version: 1.3.3
Title: Simple Data Frames
Description: Provides a 'tbl_df' class (the 'tibble') that provides
stricter checking and better formatting than the traditional data frame.
Expand Down
7 changes: 4 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# tibble 1.3.2 (2017-05-23)
# tibble 1.3.3 (2017-05-27)

## Bug fixes

- Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan).
- Added `format()` and `print()` methods for both `tbl` and `tbl_df` classes, to protect against malformed tibbles that inherit from `"tbl_df"` but not `"tbl"`, as created e.g. by `ungroup()` in dplyr 0.5.0 and earlier (#256, #263).
- The column width for non-syntactic columns is computed correctly again (#258).
- The `print.tbl_df()` method is identical to `print.tbl()`, instead of calling `NextMethod()`, to protect against malformed tibbles that inherit from `"tbl_df"` but not `"tbl"`, as created e.g. by `ungroup()` in dplyr 0.5.0 and earlier.
- Printing a tibble doesn't apply quote escaping to list columns.
- Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan).
- Remove unused import declaration for assertthat.


Expand Down
4 changes: 1 addition & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@

0 errors | 0 warnings | 1 note

- A note that it's been six days since the last update (apologies!)


## Reverse dependencies

This is a bugfix release for functions introduced in tibble 1.3.1 (released only a few days ago), I haven't carried out reverse dependency checks.
This is a bugfix release for functions introduced in tibble 1.3.1 (released only a few days ago). I have fixed the defects that were revealed during CRAN submission of tibble 1.3.2.
Loading

0 comments on commit b2275d5

Please sign in to comment.