Skip to content

Commit

Permalink
Merge tag 'v1.3.4.9003'
Browse files Browse the repository at this point in the history
- Cleanly define responsibilities of `new_tibble()` (#332).
- Reexporting `has_name()` from rlang, instead of forwarding, to avoid warning when importing both rlang and tibble.
- Fix copying of attributes in `new_tibble()` (#330).
- Adapt vignette to new pillar methods.
  • Loading branch information
krlmlr committed Nov 14, 2017
2 parents d4776dc + 74b66ff commit 696155b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 1 addition & 2 deletions API
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ enframe(x, name = "name", value = "value")
frame_data(...)
frame_matrix(...)
glimpse(x, width = NULL, ...)
has_name(x, name)
has_rownames(df)
is.tibble(x)
is_tibble(x)
knit_print.trunc_mat(x, options)
lst(...)
lst_(xs)
new_tibble(x, ..., subclass = NULL)
new_tibble(x, ..., nrow = NULL, subclass = NULL)
remove_rownames(df)
repair_names(x, prefix = "V", sep)
rowid_to_column(df, var = "rowid")
Expand Down
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.4.9002
Version: 1.3.4.9003
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
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### tibble 1.3.4.9003 (2017-11-13)

- Cleanly define responsibilities of `new_tibble()` (#332).
- Reexporting `has_name()` from rlang, instead of forwarding, to avoid warning when importing both rlang and tibble.
- Fix copying of attributes in `new_tibble()` (#330).
- Adapt vignette to new pillar methods.


### tibble 1.3.4.9002 (2017-11-03)

- In `glimpse()`, compute `type_sum()` from data frame for dbplyr compatibility (#328).
Expand Down

0 comments on commit 696155b

Please sign in to comment.