Skip to content

Commit

Permalink
Update to 1.3.1
Browse files Browse the repository at this point in the history
Upstream changes:
glue 1.3.1
Features

    glue() now has a + method to combine strings.

Bugfixes and minor changes

    glue_sql() now supports unquoting lists of Id objects.
    glue_sql() now quotes characters with NAs appropriately (#115).
    glue_sql() now quotes Dates appropriately (#98).
    A potential protection error reported by rchk was fixed.

glue 1.3.0
Breaking changes

    The evaluate() function has been removed. Changes elsewhere in glue made the implementation trivial so it was removed for clarities sake. Previous uses can be replaced by eval(parse(text = text), envir).

    collapse() has been renamed to glue_collapse() to avoid namespace collisions with dplyr::collapse().

Features

    compare.glue() was added, to make it easier to use glue objects in testthat::expect_equal() statements.

    glue_col() and glue_data_col() functions added to display strings with color.

Bugfixes and minor changes

    Glue now throws an informative error message when it cannot interpolate a function into a string (#114, @haleyjeppson & @ijlyttle).

    Glue now evaluates unnamed arguments lazily with delayedAssign(), so there is no performance cost if an argument is not used. (#83, @egnha).

    Fixed a bug where names in the assigned expression of an interpolation variable would conflict with the name of the variable itself (#89, @egnha).

    Do not drop the glue class when subsetting (#66).

    Fix glue() and collapse() always return UTF-8 encoded strings (#81, @dpprdan)
  • Loading branch information
wen committed Apr 7, 2019
1 parent f404318 commit 276dd78
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions devel/R-glue/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.1 2018/05/18 01:00:59 minskim Exp $
# $NetBSD: Makefile,v 1.2 2019/04/07 13:19:52 wen Exp $

DISTNAME= glue_1.2.0
DISTNAME= glue_1.3.1
CATEGORIES= devel

MAINTAINER= minskim@NetBSD.org
Expand Down
10 changes: 5 additions & 5 deletions devel/R-glue/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.1 2018/05/18 01:00:59 minskim Exp $
$NetBSD: distinfo,v 1.2 2019/04/07 13:19:52 wen Exp $

SHA1 (R/glue_1.2.0.tar.gz) = 0c4354cbfd529f2475d186bf7e3e22024561f2cc
RMD160 (R/glue_1.2.0.tar.gz) = cd18993d98ba2aa45d82eed743cd22629b1a257c
SHA512 (R/glue_1.2.0.tar.gz) = e390f4c829367da2f0033bcd5500173abe96802698b27fb9d923deacc1fb610e8a407eeffedbb09e2ff2a8e931bf791cff68f861b481ffd684ee7e34610f7208
Size (R/glue_1.2.0.tar.gz) = 28193 bytes
SHA1 (R/glue_1.3.1.tar.gz) = 0201ce759bf0f699fa67e1241edadf7140572a25
RMD160 (R/glue_1.3.1.tar.gz) = a0d68ec8a6b4d03d1af1dc4a61af37129483c978
SHA512 (R/glue_1.3.1.tar.gz) = b46591f790b10d9e6c92df5d19efcb6b9f9d735e3d48ebce4739b367803ce282a67ebc7eda6b826d6fa36c04d4fe4c4a85dd0e6e0d5c37560d3e61ac4db1410e
Size (R/glue_1.3.1.tar.gz) = 122950 bytes

0 comments on commit 276dd78

Please sign in to comment.