Skip to content

Commit

Permalink
Strings 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Nov 24, 2020
1 parent 5dcc932 commit 6a327ed
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
<a name="2.2.0"></a>
# [2.2.0](https://github.com/atomastic/strings) (2020-11-24)
* fix limit() method if string length is lower or equals to provided limit.
* fix studly() method.
* fix issue with encoding on new Strings object creation.
* remove memory cache for words.
* add tests for isSimilar() method.
* improve tests for isBase64() method.
* improve tests for move() method.
* improve tests for beforeLast() method.
* improve tests for afterLast() method.
* improve tests for replaceFirst() method.
* improve tests for between() method.
* improve tests for indexOfLast() method.
* improve tests for indexOf() method.
* improve tests for random() method.
* improve tests for replaceLast() method.
* improve tests for isSerialized() method.
* improve tests for hash() method.
* improve tests for studly() method.
* improve tests for __costruct() method.
* improve tests workflow.

<a name="2.1.0"></a>
# [2.1.0](https://github.com/atomastic/strings) (2020-11-05)
* add isIP method.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ $strings = strings();
* @param mixed $string Value to modify, after being cast to string. Default: ''
* @param string $encoding The character encoding. Default: UTF-8
*/
public static function create($string = '', string $encoding = 'UTF-8'): self
public static function create($string = '', $encoding = 'UTF-8'): self
```

##### Example
Expand Down

0 comments on commit 6a327ed

Please sign in to comment.