From 0b7bdfb180e72c8d76e75a649ced67e392201458 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Sat, 18 Mar 2017 10:14:20 -0500 Subject: [PATCH] Add change log notes for 3.6.0 release --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0560e6c..17ce267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # ramsey/uuid Changelog +## 3.6.0 + +_Released: 2017-03-18_ + + * Add `InvalidUuidStringException`, thrown when attempting to decode an invalid string UUID; this does not introduce any BC issues, since the new exception inherits from the previously used `InvalidArgumentException` [#162](https://github.com/ramsey/uuid/pull/162) + * Improve memory usage when generating large quantities of UUIDs (use `str_pad()` and `dechex()` instead of `sprintf()`) [#160](https://github.com/ramsey/uuid/pull/160) + * Minor test and documentation updates + ## 3.5.2 _Released: 2016-11-22_