Skip to content

Commit

Permalink
Merge tag 'v1.1-6'
Browse files Browse the repository at this point in the history
- Internal: Cleanup of formatting code.
- `add_row()` now correctly handles existing columns of type `list` that are not updated (#148).
- `nibble()` has been renamed to `tribble()`, stands for "transposed tibble" (#143).
- `add_row()` and `add_column()` gain `.before` and `.after` arguments which indicate the row (by number) or column (by number or name) before or after which the new data are inserted. Updated or added columns cannot be named `.before` or `.after` (#99).
- New `add_column()`, analogously to `add_row()` (#99).
- `add_row()` now can add multiple rows, with recycling (#142, @jennybc).
  • Loading branch information
krlmlr committed Aug 16, 2016
2 parents 7f7ca09 + d4a86cc commit 1f72b46
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
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.1-5
Version: 1.1-6
Title: Simple Data Frames
Description: Provides a 'tbl_df' class that offers better checking and
printing capabilities than traditional data frames.
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## tibble 1.1-6 (2016-08-16)

- Internal: Cleanup of formatting code.
- `add_row()` now correctly handles existing columns of type `list` that are not updated (#148).
- `nibble()` has been renamed to `tribble()`, stands for "transposed tibble" (#143).
- `add_row()` and `add_column()` gain `.before` and `.after` arguments which indicate the row (by number) or column (by number or name) before or after which the new data are inserted. Updated or added columns cannot be named `.before` or `.after` (#99).
- New `add_column()`, analogously to `add_row()` (#99).
- `add_row()` now can add multiple rows, with recycling (#142, @jennybc).


# tibble 1.1-5 (2016-07-31)

- `all.equal()` doesn't throw an error anymore if one of the columns is named `na.last`, `decreasing` or `method` (#107, @BillDunlap).
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ branches:
only:
- master
- production
- /r-.*/

environment:
global:
Expand Down

0 comments on commit 1f72b46

Please sign in to comment.