From 9facc4689547e72e03c1e18df4a0ee162b2778b0 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Sun, 26 Jan 2020 23:09:17 -0600 Subject: [PATCH] Prepare for 1.6.0 release --- .gitignore | 14 ++++++-------- CHANGELOG.md | 16 ++++++++++++++++ 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 0a59599..4dfe4c6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,6 @@ -.idea/ -*.phar -.DS_Store -build -composer.lock -docs -phpunit.xml -vendor +.phpunit.result.cache +/build/ +/composer.lock +/phpcs.xml +/phpunit.xml +/vendor/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 27738da..5fdcf63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Ramsey\Uuid\Doctrine Changelog +## 1.6.0 + +_Released: 2020-01-27_ + +* `UuidType::convertToPHPValue()` now checks for instances of `UuidInterface` + instead of `Uuid`. +* When `UuidBinaryOrderedTimeType` fails to encode or decode a UUID because it + is not a version 1 UUID, the `ConversionException` thrown now includes more + information about the format expected ("UuidV1"). +* `UuidBinaryOrderedTimeType::getUuidFactory()` and + `UuidBinaryOrderedTimeType::getCodec()` are now `protected` instead of + `private`. +* Set minimum ramsey/uuid version to 3.5. This is required for use of the + `OrderedTimeCodec` this library has supported since version 1.3.0. +* Ensure the library supports the forthcoming ramsey/uuid version 4.0.0. + ## 1.5.0 _Released: 2018-08-11_