From 73a0b34cbff6e9d666dfdca34fda4a637ddd70a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Tue, 9 Aug 2016 00:46:20 +0200 Subject: [PATCH 1/2] bump version to 0.0-5 --- DESCRIPTION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index d00ece3..8aa55e1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: utf8 Title: A simple class for storing UTF-8 strings -Date: 2016-06-14 -Version: 0.0-4 +Date: 2016-08-09 +Version: 0.0-5 Authors@R: person("Kirill", "Müller", role = c("aut", "cre"), email = "krlmlr+r@mailbox.org") Description: Implements an S3 class for storing UTF-8 strings, based on regular characters. Imports: From fad62781b624d5e430aad6ff6cb833fd722c29d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Tue, 9 Aug 2016 00:46:53 +0200 Subject: [PATCH 2/2] NEWS --- NEWS.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/NEWS.md b/NEWS.md index 3275281..b424a38 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,10 @@ +## utf8 0.0-5 (2016-08-09) + +- New `encoding()`, returns `"ASCII"` for pure ASCII strings and behaves identical to `base::Encoding()` otherwise. +- New `all_utf8()`, returns an atomic logical that indicates if all elements of a character vector are UTF-8 encoded; this includes pure ASCII stringsi (#1). +- Remove `Encoding<-` override, with documentation (#7). + + # utf8 0.0-4 (2016-06-14) - Implement `c.utf8()`.