Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Merge tag 'v0.0-5'
Browse files Browse the repository at this point in the history
- 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).
  • Loading branch information
krlmlr committed Aug 8, 2016
2 parents cdeaa90 + 521f055 commit b1dd68e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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()`.
Expand Down

0 comments on commit b1dd68e

Please sign in to comment.