From 412a96479934539fc070a15efd9a9cd3e3ca3a05 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 8 Jan 2024 14:07:36 -0500 Subject: [PATCH] chore: bump copyright year to 2024 --- LICENSE | 2 +- src/error.rs | 2 ++ src/examples/builder.rs | 2 ++ src/examples/viewer.rs | 2 ++ src/lib.rs | 2 ++ src/v1.rs | 2 ++ src/v2.rs | 2 ++ 7 files changed, 13 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index f3c8319..7a0f54a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright 2021-2023 Deno Land Inc. +Copyright 2021-2024 Deno Land Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/src/error.rs b/src/error.rs index b9f618b..d077098 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + use thiserror::Error; #[derive(Debug, Error)] diff --git a/src/examples/builder.rs b/src/examples/builder.rs index c0772dc..ceb0c1f 100644 --- a/src/examples/builder.rs +++ b/src/examples/builder.rs @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + use std::collections::HashMap; use std::sync::Arc; diff --git a/src/examples/viewer.rs b/src/examples/viewer.rs index ba6b8f9..fa6e361 100644 --- a/src/examples/viewer.rs +++ b/src/examples/viewer.rs @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + use futures::io::AllowStdIo; use futures::io::BufReader; diff --git a/src/lib.rs b/src/lib.rs index 24dc7d2..558dc51 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + mod error; pub mod v1; pub mod v2; diff --git a/src/v1.rs b/src/v1.rs index b8cc786..389848f 100644 --- a/src/v1.rs +++ b/src/v1.rs @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + use std::collections::HashMap; use std::collections::HashSet; use std::sync::Arc; diff --git a/src/v2.rs b/src/v2.rs index 3197696..291a2cd 100644 --- a/src/v2.rs +++ b/src/v2.rs @@ -1,3 +1,5 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + use std::collections::HashMap; use std::collections::HashSet; use std::future::Future;