(math/R-tibble) Updated 3.1.2 to 3.1.4

# tibble 3.1.4

## Features

- `as.data.frame.tbl_df()` strips inner column names (#837).
- `new_tibble()` allows omitting the `nrow` argument again (#781).

## Documentation

- Move `vignette("digits")`, `vignette("numbers")`, `?num` and `?char`
  from the pillar package here (#913).
- Replace `iris` by `trees` (#943).
- Various documentation improvements.
- New `?tibble_options` help page (#912).

## Performance

- `x[i, j] <- one_row_value` avoids explicit recycling of the
  right-hand side, the recycling happens implicitly in
  `vctrs::vec_assign()` for performance (#922).

## Internal

- Vignettes are now tested with a snapshot test (#919).
- `new_tibble()` uses `vctrs::new_data_frame()` internally (#726,
  @DavisVaughan).
- Adapt to pillar 1.6.2.
- Fix tests for compatibility with pillar 1.6.2.

# tibble 3.1.3

## Bug fixes

- `tbl[row, col] <- rhs` treats an all-`NA` logical vector as a
  missing value both for existing data (#773) and for the right-hand
  side value (#868). This means that a column initialized with `NA`
  (of type `logical`) will change its type when a row is updated to a
  value of a different type.
- `[[<-()` supports symbols (#893).

## Features

- `as_tibble_row()` supports arbitrary vectors (#797).
- `enframe()` and `deframe()` support arbitrary vectors (#730).
- `tibble()` and `tibble_row()` ignore all columns that evaluate to
  `NULL`, not only those where a verbatim `NULL` is passed (#895,
  #900).
- `new_tibble()` is now faster (#901, @mgirlich).

## Internal

- Establish compatibility with rlang > 0.4.11 (#908).
- Use `pillar::dim_desc()` (#859).
- Establish compatibility with testthat > 3.0.3 (#896, @lionel-).
- Bump required versions of ellipsis and vctrs to avoid warning during
  package load.
This commit is contained in:
mef 2021-09-20 00:44:28 +00:00
parent b4fe67440c
commit e33e48b69c
2 changed files with 25 additions and 13 deletions

View file

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.8 2021/06/06 23:39:26 mef Exp $
# $NetBSD: Makefile,v 1.9 2021/09/20 00:44:28 mef Exp $
R_PKGNAME= tibble
R_PKGVER= 3.1.2
#ATEGORIES= math
R_PKGVER= 3.1.4
MAINTAINER= minskim@NetBSD.org
COMMENT= Simple data frames
@ -17,12 +16,25 @@ DEPENDS+= R-pillar>=1.4.0:../../misc/R-pillar
DEPENDS+= R-lifecycle-[0-9]*:../../devel/R-lifecycle
DEPENDS+= R-magrittr-[0-9]*:../../devel/R-magrittr
#Packages suggested but not available:
# 'bench', 'bit64', 'blob', 'DiagrammeR', 'dplyr', 'formattable',
# 'ggplot2', 'hms', 'lubridate', 'mockr', 'nycflights13', 'purrr',
# 'testthat', 'tidyr'
USE_LANGUAGES= c
# VignetteBuilder package required for checking but not installed: 'knitr'
# Packages suggested but not available:
# 'bench', 'DiagrammeR', 'formattable', 'lubridate', 'mockr',
# 'nycflights13'
TEST_DEPENDS+= R-bit64-[0-9]*:../../devel/R-bit64
TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
TEST_DEPENDS+= R-hms-[0-9]*:../../time/R-hms
TEST_DEPENDS+= R-htmltools-[0-9]*:../../textproc/R-htmltools
TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
TEST_DEPENDS+= R-purrr-[0-9]*:../../devel/R-purrr
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
TEST_DEPENDS+= R-tidyr-[0-9]*:../../math/R-tidyr
.include "../../lang/R-cpp11/buildlink3.mk"
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"

View file

@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.3 2021/06/05 08:30:23 mef Exp $
$NetBSD: distinfo,v 1.4 2021/09/20 00:44:28 mef Exp $
SHA1 (R/tibble_3.1.2.tar.gz) = f075b899eedd96b4e27770eb37391c6350227bf3
RMD160 (R/tibble_3.1.2.tar.gz) = 363bf58e1729dcdec8ba4a77de508f339bbcbcd5
SHA512 (R/tibble_3.1.2.tar.gz) = e0c6bfd360b9b7fef77c6bf1f41c99dedff8a2cfb6e08c4084a4ecf5612e2144713070634d08f111c39ec3274fa692713444f673c0413a74128396dc074dda74
Size (R/tibble_3.1.2.tar.gz) = 686145 bytes
SHA1 (R/tibble_3.1.4.tar.gz) = 4073557b7c53730e85c3aa679be6748598fb6265
RMD160 (R/tibble_3.1.4.tar.gz) = 92249d2ea09881fd39603aefa9c543966e6cb8c2
SHA512 (R/tibble_3.1.4.tar.gz) = a66dc2a734b82da304d8e981de7c2a398c81a7cb12f96bf8e52157c4aaea9dd0067eac0b6e4529fc4f9cf9ff7aef7fed29181031e928bb0d82339b22beabed83
Size (R/tibble_3.1.4.tar.gz) = 737787 bytes