From 328c6ce8b49e462e7bcb4caacf009c1a2836cb94 Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Thu, 2 Jan 2025 22:21:58 -0800 Subject: [PATCH] chore: update copyright years --- tools/snippets/README.md | 2 +- tools/snippets/benchmark/benchmark.async.js | 2 +- tools/snippets/benchmark/benchmark.js | 2 +- tools/snippets/benchmark/benchmark.length.js | 2 +- tools/snippets/benchmark/benchmark.native.js | 2 +- tools/snippets/benchmark/benchmark.wasm.js | 2 +- tools/snippets/benchmark/c/Makefile | 2 +- tools/snippets/benchmark/c/benchmark.c | 2 +- tools/snippets/benchmark/c/cephes/Makefile | 2 +- tools/snippets/benchmark/c/cephes/benchmark.c | 2 +- tools/snippets/benchmark/c/native/Makefile | 2 +- tools/snippets/benchmark/c/native/benchmark.c | 2 +- tools/snippets/benchmark/c/native/benchmark.length.c | 2 +- tools/snippets/benchmark/cpp/boost/Makefile | 2 +- tools/snippets/benchmark/cpp/boost/benchmark.cpp | 2 +- tools/snippets/benchmark/fortran/Makefile | 2 +- tools/snippets/benchmark/fortran/benchmark.f | 2 +- tools/snippets/benchmark/fortran/native/Makefile | 2 +- tools/snippets/benchmark/fortran/native/benchmark.f | 2 +- tools/snippets/benchmark/fortran/native/benchmark.length.f | 2 +- tools/snippets/benchmark/julia/benchmark.jl | 2 +- tools/snippets/benchmark/python/benchmark.py | 2 +- tools/snippets/benchmark/python/numpy/benchmark.py | 2 +- tools/snippets/benchmark/python/scipy/benchmark.py | 2 +- tools/snippets/benchmark/r/benchmark.R | 2 +- tools/snippets/bin/cli | 2 +- tools/snippets/bin/cli_stdin | 2 +- tools/snippets/examples/index.js | 2 +- tools/snippets/include/stdlib/todo.h | 2 +- tools/snippets/lib/index.js | 2 +- tools/snippets/lib/main.js | 2 +- tools/snippets/lib/validate.js | 2 +- tools/snippets/src/Makefile | 2 +- tools/snippets/src/addon.c | 2 +- tools/snippets/src/main.c | 2 +- tools/snippets/test/fixtures/c/cephes/Makefile | 2 +- tools/snippets/test/fixtures/c/cephes/runner.c | 2 +- tools/snippets/test/fixtures/cpp/boost/Makefile | 2 +- tools/snippets/test/fixtures/cpp/boost/runner.cpp | 2 +- tools/snippets/test/fixtures/julia/runner.jl | 2 +- tools/snippets/test/fixtures/python/runner.py | 2 +- tools/snippets/test/fixtures/r/runner.R | 2 +- tools/snippets/test/fixtures/stdin_error.js.txt | 2 +- tools/snippets/test/test.cli.js | 2 +- tools/snippets/test/test.js | 2 +- tools/snippets/test/test.native.js | 2 +- tools/snippets/test/test.stdin_cli.js | 2 +- tools/snippets/test/test.validate.js | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/tools/snippets/README.md b/tools/snippets/README.md index ded745b95c94..93db27a11734 100644 --- a/tools/snippets/README.md +++ b/tools/snippets/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2024 The Stdlib Authors. +Copyright (c) 2025 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/benchmark.async.js b/tools/snippets/benchmark/benchmark.async.js index 688b12040791..d48d05f30de6 100644 --- a/tools/snippets/benchmark/benchmark.async.js +++ b/tools/snippets/benchmark/benchmark.async.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/benchmark.js b/tools/snippets/benchmark/benchmark.js index 767e4a019e1b..0c646ddcf267 100644 --- a/tools/snippets/benchmark/benchmark.js +++ b/tools/snippets/benchmark/benchmark.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/benchmark.length.js b/tools/snippets/benchmark/benchmark.length.js index c20dc91d9af5..813c02f29b45 100644 --- a/tools/snippets/benchmark/benchmark.length.js +++ b/tools/snippets/benchmark/benchmark.length.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/benchmark.native.js b/tools/snippets/benchmark/benchmark.native.js index 2f1daf9c0103..69b035a857c8 100644 --- a/tools/snippets/benchmark/benchmark.native.js +++ b/tools/snippets/benchmark/benchmark.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/benchmark.wasm.js b/tools/snippets/benchmark/benchmark.wasm.js index 2c18bfec696f..66165f7620dd 100644 --- a/tools/snippets/benchmark/benchmark.wasm.js +++ b/tools/snippets/benchmark/benchmark.wasm.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/Makefile b/tools/snippets/benchmark/c/Makefile index 88cbd1bb8a1b..635d877081d5 100644 --- a/tools/snippets/benchmark/c/Makefile +++ b/tools/snippets/benchmark/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/benchmark.c b/tools/snippets/benchmark/c/benchmark.c index 0f52b6d27280..9670a2d0bdf1 100644 --- a/tools/snippets/benchmark/c/benchmark.c +++ b/tools/snippets/benchmark/c/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/cephes/Makefile b/tools/snippets/benchmark/c/cephes/Makefile index 35b7d7c26ebd..c103e646f7a5 100644 --- a/tools/snippets/benchmark/c/cephes/Makefile +++ b/tools/snippets/benchmark/c/cephes/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/cephes/benchmark.c b/tools/snippets/benchmark/c/cephes/benchmark.c index c579e9733466..c29256b2a648 100644 --- a/tools/snippets/benchmark/c/cephes/benchmark.c +++ b/tools/snippets/benchmark/c/cephes/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/native/Makefile b/tools/snippets/benchmark/c/native/Makefile index 5d06a4714f91..100043f4054b 100644 --- a/tools/snippets/benchmark/c/native/Makefile +++ b/tools/snippets/benchmark/c/native/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/native/benchmark.c b/tools/snippets/benchmark/c/native/benchmark.c index 9a5435c130b4..11c517a70543 100644 --- a/tools/snippets/benchmark/c/native/benchmark.c +++ b/tools/snippets/benchmark/c/native/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/c/native/benchmark.length.c b/tools/snippets/benchmark/c/native/benchmark.length.c index 3cd3cc770c9a..daf9fa34caf2 100644 --- a/tools/snippets/benchmark/c/native/benchmark.length.c +++ b/tools/snippets/benchmark/c/native/benchmark.length.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/cpp/boost/Makefile b/tools/snippets/benchmark/cpp/boost/Makefile index eff50bbce3ae..a8582cd67345 100644 --- a/tools/snippets/benchmark/cpp/boost/Makefile +++ b/tools/snippets/benchmark/cpp/boost/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/cpp/boost/benchmark.cpp b/tools/snippets/benchmark/cpp/boost/benchmark.cpp index 5b687c5d7d73..0bdd0a9db2b9 100644 --- a/tools/snippets/benchmark/cpp/boost/benchmark.cpp +++ b/tools/snippets/benchmark/cpp/boost/benchmark.cpp @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/fortran/Makefile b/tools/snippets/benchmark/fortran/Makefile index feb4fdc606fd..fc211b649ce3 100644 --- a/tools/snippets/benchmark/fortran/Makefile +++ b/tools/snippets/benchmark/fortran/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/fortran/benchmark.f b/tools/snippets/benchmark/fortran/benchmark.f index 42a7abd4ff06..f8dedc5357d3 100644 --- a/tools/snippets/benchmark/fortran/benchmark.f +++ b/tools/snippets/benchmark/fortran/benchmark.f @@ -1,7 +1,7 @@ !> ! @license Apache-2.0 ! -! Copyright (c) 2024 The Stdlib Authors. +! Copyright (c) 2025 The Stdlib Authors. ! ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/fortran/native/Makefile b/tools/snippets/benchmark/fortran/native/Makefile index 85ccfc26080b..56b2cdf9ee54 100644 --- a/tools/snippets/benchmark/fortran/native/Makefile +++ b/tools/snippets/benchmark/fortran/native/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/fortran/native/benchmark.f b/tools/snippets/benchmark/fortran/native/benchmark.f index f4b943f0a3c3..48431d53f97d 100644 --- a/tools/snippets/benchmark/fortran/native/benchmark.f +++ b/tools/snippets/benchmark/fortran/native/benchmark.f @@ -1,7 +1,7 @@ !> ! @license Apache-2.0 ! -! Copyright (c) 2024 The Stdlib Authors. +! Copyright (c) 2025 The Stdlib Authors. ! ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/fortran/native/benchmark.length.f b/tools/snippets/benchmark/fortran/native/benchmark.length.f index 00e5b68f52f2..df4e16c50a33 100644 --- a/tools/snippets/benchmark/fortran/native/benchmark.length.f +++ b/tools/snippets/benchmark/fortran/native/benchmark.length.f @@ -1,7 +1,7 @@ !> ! @license Apache-2.0 ! -! Copyright (c) 2024 The Stdlib Authors. +! Copyright (c) 2025 The Stdlib Authors. ! ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/julia/benchmark.jl b/tools/snippets/benchmark/julia/benchmark.jl index c548c9413f41..5187008d5728 100755 --- a/tools/snippets/benchmark/julia/benchmark.jl +++ b/tools/snippets/benchmark/julia/benchmark.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/python/benchmark.py b/tools/snippets/benchmark/python/benchmark.py index eb5cf28fa92d..c7f6e4ec38e8 100644 --- a/tools/snippets/benchmark/python/benchmark.py +++ b/tools/snippets/benchmark/python/benchmark.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/python/numpy/benchmark.py b/tools/snippets/benchmark/python/numpy/benchmark.py index 268a0eee08e2..260b5f1c68e9 100755 --- a/tools/snippets/benchmark/python/numpy/benchmark.py +++ b/tools/snippets/benchmark/python/numpy/benchmark.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/python/scipy/benchmark.py b/tools/snippets/benchmark/python/scipy/benchmark.py index ade2520d5494..275d4da40e7c 100755 --- a/tools/snippets/benchmark/python/scipy/benchmark.py +++ b/tools/snippets/benchmark/python/scipy/benchmark.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/benchmark/r/benchmark.R b/tools/snippets/benchmark/r/benchmark.R index 5940cf1ea4e3..0245788e590d 100755 --- a/tools/snippets/benchmark/r/benchmark.R +++ b/tools/snippets/benchmark/r/benchmark.R @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/bin/cli b/tools/snippets/bin/cli index d737111a54a0..7c1b87fb8167 100755 --- a/tools/snippets/bin/cli +++ b/tools/snippets/bin/cli @@ -3,7 +3,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/bin/cli_stdin b/tools/snippets/bin/cli_stdin index eb98a704ec02..44868f9cab59 100644 --- a/tools/snippets/bin/cli_stdin +++ b/tools/snippets/bin/cli_stdin @@ -3,7 +3,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/examples/index.js b/tools/snippets/examples/index.js index f9c9747b9f6b..a9e69ac28ea0 100644 --- a/tools/snippets/examples/index.js +++ b/tools/snippets/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/include/stdlib/todo.h b/tools/snippets/include/stdlib/todo.h index afbd6e5b3a27..6b834781571c 100644 --- a/tools/snippets/include/stdlib/todo.h +++ b/tools/snippets/include/stdlib/todo.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/lib/index.js b/tools/snippets/lib/index.js index d328dae487a2..d553da142c86 100644 --- a/tools/snippets/lib/index.js +++ b/tools/snippets/lib/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/lib/main.js b/tools/snippets/lib/main.js index 19673be4ca8a..be644cf0fca6 100644 --- a/tools/snippets/lib/main.js +++ b/tools/snippets/lib/main.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/lib/validate.js b/tools/snippets/lib/validate.js index 95cd9fbe5d27..6078bd3fb5fe 100644 --- a/tools/snippets/lib/validate.js +++ b/tools/snippets/lib/validate.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/src/Makefile b/tools/snippets/src/Makefile index bcf18aa46655..7733b6180cb4 100644 --- a/tools/snippets/src/Makefile +++ b/tools/snippets/src/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/src/addon.c b/tools/snippets/src/addon.c index 4a2388fb907a..a158f045f84d 100644 --- a/tools/snippets/src/addon.c +++ b/tools/snippets/src/addon.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/src/main.c b/tools/snippets/src/main.c index ace6bc92f41f..24f0765d71e4 100644 --- a/tools/snippets/src/main.c +++ b/tools/snippets/src/main.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/c/cephes/Makefile b/tools/snippets/test/fixtures/c/cephes/Makefile index ee252738689e..fd3f30129594 100644 --- a/tools/snippets/test/fixtures/c/cephes/Makefile +++ b/tools/snippets/test/fixtures/c/cephes/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/c/cephes/runner.c b/tools/snippets/test/fixtures/c/cephes/runner.c index 1b76e91fabb9..2ef820d96629 100644 --- a/tools/snippets/test/fixtures/c/cephes/runner.c +++ b/tools/snippets/test/fixtures/c/cephes/runner.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/cpp/boost/Makefile b/tools/snippets/test/fixtures/cpp/boost/Makefile index 8ba5f7c629bd..94874eb7a405 100644 --- a/tools/snippets/test/fixtures/cpp/boost/Makefile +++ b/tools/snippets/test/fixtures/cpp/boost/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/cpp/boost/runner.cpp b/tools/snippets/test/fixtures/cpp/boost/runner.cpp index c32d421a8b36..d91cebe5e6a1 100644 --- a/tools/snippets/test/fixtures/cpp/boost/runner.cpp +++ b/tools/snippets/test/fixtures/cpp/boost/runner.cpp @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/julia/runner.jl b/tools/snippets/test/fixtures/julia/runner.jl index 1025b93a7e4f..74aff7d3c714 100644 --- a/tools/snippets/test/fixtures/julia/runner.jl +++ b/tools/snippets/test/fixtures/julia/runner.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/python/runner.py b/tools/snippets/test/fixtures/python/runner.py index 45119f27f677..5acb4c6d301f 100644 --- a/tools/snippets/test/fixtures/python/runner.py +++ b/tools/snippets/test/fixtures/python/runner.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/r/runner.R b/tools/snippets/test/fixtures/r/runner.R index 2cd3bc9136d9..e1e4d755118d 100644 --- a/tools/snippets/test/fixtures/r/runner.R +++ b/tools/snippets/test/fixtures/r/runner.R @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 The Stdlib Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/fixtures/stdin_error.js.txt b/tools/snippets/test/fixtures/stdin_error.js.txt index c7e3c506a96b..7b3cc56df0fa 100644 --- a/tools/snippets/test/fixtures/stdin_error.js.txt +++ b/tools/snippets/test/fixtures/stdin_error.js.txt @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/test.cli.js b/tools/snippets/test/test.cli.js index 2f3d7d270a21..61e11e246eee 100644 --- a/tools/snippets/test/test.cli.js +++ b/tools/snippets/test/test.cli.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/test.js b/tools/snippets/test/test.js index 5e23e37197f1..ab6b7d018893 100644 --- a/tools/snippets/test/test.js +++ b/tools/snippets/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/test.native.js b/tools/snippets/test/test.native.js index d51b9c47be00..b46ab66277c6 100644 --- a/tools/snippets/test/test.native.js +++ b/tools/snippets/test/test.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/test.stdin_cli.js b/tools/snippets/test/test.stdin_cli.js index 1ec83225f144..c9bd774e929d 100644 --- a/tools/snippets/test/test.stdin_cli.js +++ b/tools/snippets/test/test.stdin_cli.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/tools/snippets/test/test.validate.js b/tools/snippets/test/test.validate.js index 12bd75f8d7ab..c4bedccaee84 100644 --- a/tools/snippets/test/test.validate.js +++ b/tools/snippets/test/test.validate.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.