From df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e Mon Sep 17 00:00:00 2001 From: "Daniel St. Jules" Date: Sun, 11 Jun 2017 21:10:27 -0400 Subject: [PATCH] 3.1.0 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a18bd..3f13575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 3.1.0 (2017-06-11) +* Add $language support to slugify +* Add bg specific transliteration +* ЬЪ/ьъ handling is now language-specific + ### 3.0.1 (2017-04-12) * Don't replace @ in toAscii * Use normal replacement for @ in slugify, e.g. user@home => user-home diff --git a/README.md b/README.md index a4a1ffe..df48e39 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ![Stringy](http://danielstjules.com/github/stringy-logo.png) A PHP string manipulation library with multibyte support. Compatible with PHP -5.4+, PHP 7, and HHVM. +5.4+, PHP 7+, and HHVM. ``` php s('string')->toTitleCase()->ensureRight('y') == 'Stringy' @@ -180,7 +180,7 @@ in your composer.json file: ```json "require": { - "danielstjules/stringy": "~3.0.1" + "danielstjules/stringy": "~3.1.0" } ```