From 2d1ce263686eb2d6d534ebd30d3b7f30efc58dd9 Mon Sep 17 00:00:00 2001 From: Cameron Ackerman Date: Wed, 3 Nov 2021 07:25:43 -0700 Subject: [PATCH 1/2] update readme to document experimental v6 and v7 ids --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4830300..7ebe979 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,14 @@ This package supports the following UUID versions: * Version 4, based on random numbers (RFC-4122) * Version 5, based on SHA-1 hashing of a named value (RFC-4122) +This package also supports experimental Universally Unique Identifier implementations based on a +[draft RFC](https://datatracker.ietf.org/doc/html/draft-peabody-dispatch-new-uuid-format) that updates RFC-4122 +* Version 6, a k-sortable id based on timestamp (draft-peabody-dispatch-new-uuid-format, RFC-4122) +* Version 7, a k-sortable id based on timestamp with variable precision (draft-peabody-dispatch-new-uuid-format, RFC-4122) + +The v6 and v7 IDs are **not** considered a part of the stable API, and may be subject to behavior or API changes as part of minor releases +to this package. They will be updated as the draft RFC changes, and will become stable if and when the draft RFC is adopted into RFC-4122 + ## Project History This project was originally forked from the From dfed5851d55c552c8dc3b0ce9389315bb53cd841 Mon Sep 17 00:00:00 2001 From: Cameron Ackerman Date: Thu, 9 Dec 2021 16:24:47 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ebe979..ace12ea 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This package also supports experimental Universally Unique Identifier implementa * Version 7, a k-sortable id based on timestamp with variable precision (draft-peabody-dispatch-new-uuid-format, RFC-4122) The v6 and v7 IDs are **not** considered a part of the stable API, and may be subject to behavior or API changes as part of minor releases -to this package. They will be updated as the draft RFC changes, and will become stable if and when the draft RFC is adopted into RFC-4122 +to this package. They will be updated as the draft RFC changes, and will become stable if and when the draft RFC is accepted. ## Project History