Skip to content

Commit

Permalink
chore: bump copyright (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Apr 22, 2024
1 parent e0b890b commit d104f6f
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2023 the Deno authors
Copyright (c) 2018-2024 the Deno authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.75.0"
channel = "1.77.2"
components = ["clippy", "rustfmt"]
profile = "minimal"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::cmp::Ordering;
use std::collections::BTreeMap;
Expand Down
2 changes: 2 additions & 0 deletions src/registry.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright 2018-2024 the Deno authors. MIT license.

use std::borrow::Cow;
use std::cmp::Ordering;
use std::collections::HashMap;
Expand Down
2 changes: 1 addition & 1 deletion src/resolution/collections.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

enum OneDirectionalLinkedListItem<'a, T> {
Root,
Expand Down
2 changes: 1 addition & 1 deletion src/resolution/common.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use deno_semver::package::PackageNv;
use deno_semver::Version;
Expand Down
2 changes: 1 addition & 1 deletion src/resolution/graph.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::cell::RefCell;
use std::collections::hash_map::DefaultHasher;
Expand Down
2 changes: 2 additions & 0 deletions src/resolution/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright 2018-2024 the Deno authors. MIT license.

mod collections;
mod common;
mod graph;
Expand Down
2 changes: 1 addition & 1 deletion src/resolution/snapshot.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2024 the Deno authors. MIT license.

use std::collections::hash_map;
use std::collections::BTreeMap;
Expand Down

0 comments on commit d104f6f

Please sign in to comment.