Skip to content

Commit

Permalink
Merge tag 'v1.1.0'
Browse files Browse the repository at this point in the history
- `NA` values are now shown in plain red, without changing the background color (#70).
- New options to control the output, with defaults that match the current behavior unless stated otherwise:
    - `pillar.sigfig` to control the number of significant digits, for highlighting and truncation (#72),
    - `pillar.subtle` to specify if insignificant digits should be printed in gray (#72),
    - `pillar.neg` to specify if negative digits should be printed in red,
    - `pillar.bold` to specify if column headers should be printed in bold (default: `FALSE`, #76),
    - `pillar.min_title_chars` to specify the minimum number of characters to display for each column name (default: 15 characters, #75).
- Shortened abbreviations for types: complex: cplx -> cpl, function: fun -> fn, factor: fctr -> fct (#71).
- Date columns now show sub-seconds if the `digits.secs` option is set (#74).
- Very wide tibbles now print faster (#85).
  • Loading branch information
krlmlr committed Jan 19, 2018
2 parents 9d96835 + 77ded76 commit 35492e5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 13 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: pillar
Title: Coloured Formatting for Columns
Version: 1.0.99.9001
Version: 1.1.0
Authors@R: c(
person("Kirill", "Müller", , "krlmlr+r@mailbox.org", role = c("aut", "cre")),
person("Hadley", "Wickham", role = "aut"),
Expand Down
9 changes: 2 additions & 7 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
### pillar 1.0.99.9001 (2018-01-14)

- Very wide tibbles now print faster (#85).


# pillar 1.0.99.9000 (2018-01-11)
## pillar 1.1.0 (2018-01-14)

- `NA` values are now shown in plain red, without changing the background color (#70).
- New options to control the output, with defaults that match the current behavior unless stated otherwise:
Expand All @@ -14,7 +9,7 @@
- `pillar.min_title_chars` to specify the minimum number of characters to display for each column name (default: 15 characters, #75).
- Shortened abbreviations for types: complex: cplx -> cpl, function: fun -> fn, factor: fctr -> fct (#71).
- Date columns now show sub-seconds if the `digits.secs` option is set (#74).
- Work around failing CRAN tests on Windows.
- Very wide tibbles now print faster (#85).


# pillar 1.0.1 (2017-11-27)
Expand Down
28 changes: 23 additions & 5 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
Update as requested by CRAN:

- Fix Windows check errors
Maintenance update, also fixes check failures on Windows.

## Test environments
* local Ubuntu 17.04 install, R 3.4.2
* ubuntu 12.04 (on travis-ci), R 3.4.2
* local Ubuntu 17.10 install, R 3.4.3
* Ubuntu 14.04 (on travis-ci), R 3.4.3
* win-builder (devel and release)

## R CMD check results

OK

## revdepcheck results

We checked 305 direct and indirect (depth 1) reverse dependencies (302 from CRAN + 3 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 4 new problems
* We failed to check 1 packages

Issues with CRAN packages are summarised below.

### New problems

* GSODR and unpivots: likely unrelated to the update

* tibble and hms
now breaking because tests rely on output generated by pillar, will update soon

### Failed to check

* cdcfluview (failed to install)

0 comments on commit 35492e5

Please sign in to comment.