From 3cf18e9e424a6dedc38b7eb7ef580edb0929461b Mon Sep 17 00:00:00 2001 From: "Daniel St. Jules" Date: Mon, 9 Feb 2015 22:19:18 -0800 Subject: [PATCH] 1.9.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27d0189..03a1097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### 1.9.0 (2015-02-09) + + * Added hasUpperCase and hasLowerCase + * Added $removeUnsupported parameter to toAscii() + * Improved toAscii support with additional Unicode spaces, Vietnamese chars, + and numerous other characters + * Separated the charsArray from toAscii as a protected method that may be + extended by inheriting classes + * Chars array is cached for better performance + ### 1.8.1 (2015-01-08) * Optimized chars() diff --git a/README.md b/README.md index c66284e..3dbb7d9 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ in your composer.json file: ```json { "require": { - "danielstjules/stringy": "~1.8" + "danielstjules/stringy": "~1.9" } } ```