Skip to content

Commit

Permalink
Bumping version number for 2.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Jan 17, 2014
1 parent f4a29df commit 806f467
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```


Expand Down
2 changes: 1 addition & 1 deletion src/Rhumsaa/Uuid/Uuid.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 806f467

Please sign in to comment.