From f29e9301d65062b2c7d81e69eb46fa926690d3b6 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Tue, 16 Jun 2015 09:54:41 -0500 Subject: [PATCH 1/5] Adding warnings about out-of-date package. --- README.md | 4 ++++ composer.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c9bb27..097f4c2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Rhumsaa\Uuid for PHP +_**WARNING: This package is no longer maintained. Use [ramsey/uuid](https://github.com/ramsey/uuid) instead.**_ + +---- + [![Build Status](https://travis-ci.org/ramsey/uuid.png?branch=master)](https://travis-ci.org/ramsey/uuid) [![Coverage Status](https://coveralls.io/repos/ramsey/uuid/badge.png)](https://coveralls.io/r/ramsey/uuid) [![Latest Stable Version](https://poser.pugx.org/rhumsaa/uuid/v/stable.png)](https://packagist.org/packages/rhumsaa/uuid) diff --git a/composer.json b/composer.json index 4e2c627..52e1f0b 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "rhumsaa/uuid", - "description": "A PHP 5.3+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "description": "NO LONGER MAINTAINED. Use ramsey/uuid instead. A PHP 5.3+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", "type": "library", "keywords": ["uuid", "identifier", "guid"], "homepage": "https://github.com/ramsey/uuid", From 4b8168558ef093cfa06ae7973ec8cce67dee5553 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Tue, 16 Jun 2015 12:46:13 -0500 Subject: [PATCH 2/5] Updating apigen.neon configuration --- apigen.neon | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/apigen.neon b/apigen.neon index db65ec6..dea1026 100644 --- a/apigen.neon +++ b/apigen.neon @@ -1,14 +1,8 @@ -source: - - src - +source: src/ destination: build/apidocs -title: Rhumsaa\Uuid -main: Rhumsaa +title: Rhumsaa\Uuid 2.8 +main: Ramsey deprecated: true +templateTheme: bootstrap todo: true sourceCode: true -report: build/apigen-checkstyle.xml -wipeout: true -quiet: false -progressbar: true -colors: true From 8b4186b80c02ada506f343574e76b77d206f49ae Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Sun, 21 Jun 2015 18:01:05 -0500 Subject: [PATCH 3/5] Adding links to rhumsaa-uuid on GitHub for Packagist, to avoid confusion [ci skip] --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 52e1f0b..b87868f 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "NO LONGER MAINTAINED. Use ramsey/uuid instead. A PHP 5.3+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", "type": "library", "keywords": ["uuid", "identifier", "guid"], - "homepage": "https://github.com/ramsey/uuid", + "homepage": "https://github.com/ramsey/rhumsaa-uuid", "license": "MIT", "authors": [ { @@ -16,8 +16,8 @@ } ], "support": { - "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid" + "issues": "https://github.com/ramsey/rhumsaa-uuid/issues", + "source": "https://github.com/ramsey/rhumsaa-uuid" }, "require": { "php": ">=5.3.3" From 9c1e2d34bdefd42608c612e08d6e1da1e13a3530 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 23 Jul 2015 19:00:41 +0000 Subject: [PATCH 4/5] Update CHANGELOG for 2.8.2 release --- CHANGELOG.md | 7 +++++++ src/Uuid.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98505ec..d686aeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Rhumsaa\Uuid Changelog +## 2.8.2 + +_Released: 2015-07-23_ + + * Ensure the release tag makes it into the rhumsaa/uuid package. + * Minor documentation changes. + ## 2.8.1 _Released: 2015-06-16_ diff --git a/src/Uuid.php b/src/Uuid.php index 312b5dc..1d3f143 100644 --- a/src/Uuid.php +++ b/src/Uuid.php @@ -93,7 +93,7 @@ final class Uuid /** * Version of the Rhumsaa\Uuid package */ - const VERSION = '2.8.x-dev'; + const VERSION = '2.8.2'; /** * For testing, 64-bit system override; if true, treat the system as 32-bit From 5d2f77a21d42ad82180d57fead8a7401ac2aa0be Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 23 Jul 2015 19:01:58 +0000 Subject: [PATCH 5/5] Reset version back to dev --- src/Uuid.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uuid.php b/src/Uuid.php index 1d3f143..312b5dc 100644 --- a/src/Uuid.php +++ b/src/Uuid.php @@ -93,7 +93,7 @@ final class Uuid /** * Version of the Rhumsaa\Uuid package */ - const VERSION = '2.8.2'; + const VERSION = '2.8.x-dev'; /** * For testing, 64-bit system override; if true, treat the system as 32-bit