summaryrefslogtreecommitdiff
path: root/std/uuid
diff options
context:
space:
mode:
Diffstat (limited to 'std/uuid')
-rw-r--r--std/uuid/_common.ts2
-rw-r--r--std/uuid/mod.ts2
-rw-r--r--std/uuid/test.ts2
-rw-r--r--std/uuid/v1.ts2
-rw-r--r--std/uuid/v1_test.ts2
-rw-r--r--std/uuid/v4.ts2
-rw-r--r--std/uuid/v4_test.ts2
-rw-r--r--std/uuid/v5.ts2
-rw-r--r--std/uuid/v5_test.ts2
9 files changed, 9 insertions, 9 deletions
diff --git a/std/uuid/_common.ts b/std/uuid/_common.ts
index ef0bb42be..1f3228aea 100644
--- a/std/uuid/_common.ts
+++ b/std/uuid/_common.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/**
* Converts the byte array to a UUID string
* @param bytes Used to convert Byte to Hex
diff --git a/std/uuid/mod.ts b/std/uuid/mod.ts
index ff20fa807..b2580319c 100644
--- a/std/uuid/mod.ts
+++ b/std/uuid/mod.ts
@@ -1,6 +1,6 @@
// Based on https://github.com/kelektiv/node-uuid -> https://www.ietf.org/rfc/rfc4122.txt
// Supporting Support for RFC4122 version 1, 4, and 5 UUIDs
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import * as v1 from "./v1.ts";
import * as v4 from "./v4.ts";
import * as v5 from "./v5.ts";
diff --git a/std/uuid/test.ts b/std/uuid/test.ts
index 2dff12566..7d0feaf8d 100644
--- a/std/uuid/test.ts
+++ b/std/uuid/test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert } from "../testing/asserts.ts";
import { isNil, NIL_UUID } from "./mod.ts";
diff --git a/std/uuid/v1.ts b/std/uuid/v1.ts
index 3c62332e4..b97c704e7 100644
--- a/std/uuid/v1.ts
+++ b/std/uuid/v1.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { bytesToUuid } from "./_common.ts";
const UUID_RE = new RegExp(
diff --git a/std/uuid/v1_test.ts b/std/uuid/v1_test.ts
index 364a4c304..5971d3f4e 100644
--- a/std/uuid/v1_test.ts
+++ b/std/uuid/v1_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../testing/asserts.ts";
import { generate, validate } from "./v1.ts";
diff --git a/std/uuid/v4.ts b/std/uuid/v4.ts
index 1245f2678..e059cd937 100644
--- a/std/uuid/v4.ts
+++ b/std/uuid/v4.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { bytesToUuid } from "./_common.ts";
const UUID_RE = new RegExp(
diff --git a/std/uuid/v4_test.ts b/std/uuid/v4_test.ts
index f8daf132e..6c9cb6b4a 100644
--- a/std/uuid/v4_test.ts
+++ b/std/uuid/v4_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../testing/asserts.ts";
import { generate, validate } from "./v4.ts";
diff --git a/std/uuid/v5.ts b/std/uuid/v5.ts
index b22d4ad40..7f6a098e0 100644
--- a/std/uuid/v5.ts
+++ b/std/uuid/v5.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import {
bytesToUuid,
createBuffer,
diff --git a/std/uuid/v5_test.ts b/std/uuid/v5_test.ts
index d24da36b5..15da32aee 100644
--- a/std/uuid/v5_test.ts
+++ b/std/uuid/v5_test.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../testing/asserts.ts";
import { generate, validate } from "./v5.ts";