1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-12 00:04:11 +02:00
This commit is contained in:
Daniel St. Jules
2015-02-09 22:19:18 -08:00
parent 04b12c9500
commit 3cf18e9e42
2 changed files with 11 additions and 1 deletions

View File

@@ -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) ### 1.8.1 (2015-01-08)
* Optimized chars() * Optimized chars()

View File

@@ -85,7 +85,7 @@ in your composer.json file:
```json ```json
{ {
"require": { "require": {
"danielstjules/stringy": "~1.8" "danielstjules/stringy": "~1.9"
} }
} }
``` ```