Skip to content

Commit 687dad7

Browse files
authored
chore: add a blankline after copyright header and bump year (#1008)
Prevents auto-use from inserting before the copyright.
1 parent 2e27bf7 commit 687dad7

File tree

308 files changed

+460
-314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+460
-314
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
# Copyright 2018-2025 the Deno authors. MIT license.
22

33
[workspace]
44
resolver = "2"

LICENSE.md

Lines changed: 1 addition & 1 deletion

core/00_infra.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
"use strict";
33

44
((window) => {

core/00_primordials.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22

33
// Based on https://github.com/nodejs/node/blob/889ad35d3d41e376870f785b0c1b669cb732013d/lib/internal/per_context/primordials.js
44
// Copyright Joyent, Inc. and other Node contributors.

core/01_core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
22
"use strict";
33

44
((window) => {

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
# Copyright 2018-2025 the Deno authors. MIT license.
22

33
[package]
44
name = "deno_core"

core/arena/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
2+
23
mod raw_arena;
34
mod shared_arena;
45
mod shared_atomic_arena;

core/arena/raw_arena.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
2+
23
use std::alloc::Layout;
34
use std::cell::Cell;
45
use std::mem::ManuallyDrop;

core/arena/shared_arena.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
2+
23
use std::alloc::Layout;
34
use std::cell::Cell;
45
use std::ptr::NonNull;

core/arena/shared_atomic_arena.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2025 the Deno authors. MIT license.
2+
23
use std::alloc::Layout;
34
use std::ptr::NonNull;
45
use std::sync::atomic::AtomicUsize;

0 commit comments

Comments
 (0)