From 58444b9545665a19a0cb6d997ab3596025e3be71 Mon Sep 17 00:00:00 2001 From: "J. King" Date: Sat, 11 Aug 2018 22:04:45 -0400 Subject: [PATCH] Documentation update --- CHANGELOG | 10 ++++++++++ README.md | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..dcd36f6 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,10 @@ +Version 0.2.0 (2018-08-11) +========================== + +New features: +- Implementation of all single-byte WHATWG encodings + +Version 0.1.0 (2018-08-10) +========================== + +Initial release diff --git a/README.md b/README.md index 135a0ec..7ff1adf 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ While PHP's [internationalization extension][PHP_INTL] offers excellent and extensive functionality for dealing with human languages, character encodings, and various related things, it is not always available. Moreover, its character decoder does not yield the same results as [WHATWG's Encoding standard][ENCODING], making it unsuitable for implementing parsers for URLs or HTML. The more widely used [multi-byte string extension][PHP_MBSTRING] not only suffers the same problems, but is also very slow. -Included here is a WHATWG-compatible UTF-8 string decoder which is reasonably performant while requiring no external dependencies or PHP extensions. In time it will be extended to cover the entire suite of WHATWG character encodings, and may also provide other character-centric internationalization functionality. +Included here is a partial suite of WHATWG-compatible string decoders which are reasonably performant while requiring no external dependencies or PHP extensions. At present it includes UTF-8 and all single-byte encodings. In time it will be extended to cover the entire suite of WHATWG character encodings, and may also provide other character-centric internationalization functionality. [PHP_INTL]: https://php.net/manual/en/book.intl.php [PHP_MBSTRING]: https://php.net/manual/en/book.mbstring.php