From 806f46722fcd2a5b151a94471d0d5d63d519e1bc Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Fri, 17 Jan 2014 17:40:22 -0600 Subject: [PATCH] Bumping version number for 2.6.0 release --- CHANGELOG.md | 6 ++++++ README.md | 2 +- src/Rhumsaa/Uuid/Uuid.php | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d5c5f..654d3c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +* 2.6.0 (2014-01-17) + * Introduced `uuid` console application for generating and decoding UUIDs from CLI (run `./bin/uuid` for details) + * Added `Uuid::getInteger()` to retrieve a Moontoast\Math\BigNumber representation of the 128-bit integer representing the UUID + * Added `Uuid::getHex()` to retrieve the hexadecimal representation of the UUID + * Now using netstat on Linux to capture the node for a version 1 UUID + * Now requiring Moontoast\Math as part of the regular package requirements, not just the dev requirements * 2.5.0 (2013-10-30) * Using `openssl_random_pseudo_bytes()`, if available, to generate random bytes, by merging in PR #15 from @dfreudenberger * Fixed test for Rhumsaa\Uuid\Doctrine\UuidType, by merging in PR #17 from @dfreudenberger diff --git a/README.md b/README.md index 6092211..bf8ac71 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ the following command to install the package and add it as a requirement to `composer.json`: ```bash -composer.phar require "rhumsaa/uuid=~2.4" +composer.phar require "rhumsaa/uuid=~2.6" ``` diff --git a/src/Rhumsaa/Uuid/Uuid.php b/src/Rhumsaa/Uuid/Uuid.php index 406e521..c7e6f9d 100644 --- a/src/Rhumsaa/Uuid/Uuid.php +++ b/src/Rhumsaa/Uuid/Uuid.php @@ -88,7 +88,7 @@ final class Uuid /** * Version of the Rhumsaa\Uuid package */ - const VERSION = '2.6.0-dev'; + const VERSION = '2.6.0'; /** * For testing, 64-bit system override; if true, treat the system as 32-bit