From 91230297709a4abf2d6fd3d07ae6e5fe34eb7cdf Mon Sep 17 00:00:00 2001 From: Tim Heckman Date: Wed, 18 Jul 2018 23:21:34 -0700 Subject: [PATCH] Add deprecation notice to README pointing readers to gofrs/uuid This change adds a deprecation notice to the README to point users to the fork now maintained by The Gofrs ([github.com/gofrs/uuid](https://github.com/gofrs/uuid). It also suggest that they make use of v2.0.0 or newer. Fixes #84 Signed-off-by: Tim Heckman --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7702849..89673b5 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,14 @@ [![Coverage Status](https://coveralls.io/repos/github/satori/go.uuid/badge.svg?branch=master)](https://coveralls.io/github/satori/go.uuid) [![GoDoc](http://godoc.org/github.com/satori/go.uuid?status.svg)](http://godoc.org/github.com/satori/go.uuid) +## Deprecation Notice + +This repository is now deprecated in favor of the fork maintained by the Go Community, [github.com/gofrs/uuid](https://github.com/gofrs/uuid). +Please use this new package, while being sure to choose a version newer than v2.0.0. The v2.0.0 release is API-compatible +with the master branch of this repository. + +--- + This package provides pure Go implementation of Universally Unique Identifier (UUID). Supported both creation and parsing of UUIDs. With 100% test coverage and benchmarks out of box.