Skip to content

Commit

Permalink
Add deprecation notice to README and package docs
Browse files Browse the repository at this point in the history
This change adds a deprecation notice to the README and package docs to point
users to the fork now maintained by The Gofrs ([github.com/gofrs/uuid](https://github.com/gofrs/uuid)).
It also suggests that they make use of v2.0.0 or newer.

Fixes #84

Signed-off-by: Tim Heckman <t@heckman.io>
  • Loading branch information
theckman committed Jul 19, 2018
1 parent 36e9d2e commit 69f3636
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions uuid.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
// Package uuid provides implementation of Universally Unique Identifier (UUID).
// Supported versions are 1, 3, 4 and 5 (as specified in RFC 4122) and
// version 2 (as specified in DCE 1.1).
//
// Deprecated: this package is deprecated in favor of github.com/gofrs/uuid.
package uuid

import (
Expand Down

0 comments on commit 69f3636

Please sign in to comment.