diff --git a/CMakeLists.txt b/CMakeLists.txt index 92e18be..8158ad1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) # This file is part of the Aaru Data Preservation Suite. -# Copyright (c) 2019-2022 Natalia Portillo. +# Copyright (c) 2019-2025 Natalia Portillo. # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as @@ -16,13 +16,9 @@ cmake_minimum_required(VERSION 3.13) # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, see . -IF (APPLE) - IF ("${CMAKE_OSX_ARCHITECTURES}" STREQUAL "") - SET(CMAKE_OSX_ARCHITECTURES "arm64;x86_64" CACHE STRING "Build architectures for Mac OS X" FORCE) - ENDIF () -ENDIF (APPLE) IF(APPLE) IF("${CMAKE_OSX_ARCHITECTURES}" STREQUAL "") + SET(CMAKE_OSX_ARCHITECTURES "arm64" CACHE STRING "Build architectures for Mac OS X" FORCE) ENDIF() ENDIF(APPLE) diff --git a/include/aaru.h b/include/aaru.h index 0cb3fc7..642625e 100644 --- a/include/aaru.h +++ b/include/aaru.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat.h b/include/aaruformat.h index 77e9317..9fd138f 100644 --- a/include/aaruformat.h +++ b/include/aaruformat.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/consts.h b/include/aaruformat/consts.h index b467eca..e0e8ffe 100644 --- a/include/aaruformat/consts.h +++ b/include/aaruformat/consts.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/context.h b/include/aaruformat/context.h index 8fd09aa..b6beeb7 100644 --- a/include/aaruformat/context.h +++ b/include/aaruformat/context.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/crc64.h b/include/aaruformat/crc64.h index 8882439..599feba 100644 --- a/include/aaruformat/crc64.h +++ b/include/aaruformat/crc64.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/decls.h b/include/aaruformat/decls.h index dfc6d48..7cbfc3a 100644 --- a/include/aaruformat/decls.h +++ b/include/aaruformat/decls.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/endian.h b/include/aaruformat/endian.h index c947204..53e3e77 100644 --- a/include/aaruformat/endian.h +++ b/include/aaruformat/endian.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/enums.h b/include/aaruformat/enums.h index 7032eb3..c9ca112 100644 --- a/include/aaruformat/enums.h +++ b/include/aaruformat/enums.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/errors.h b/include/aaruformat/errors.h index 0327355..670d72b 100644 --- a/include/aaruformat/errors.h +++ b/include/aaruformat/errors.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/flac.h b/include/aaruformat/flac.h index 07bb80d..102234b 100644 --- a/include/aaruformat/flac.h +++ b/include/aaruformat/flac.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/simd.h b/include/aaruformat/simd.h index 06259e3..365eaf2 100644 --- a/include/aaruformat/simd.h +++ b/include/aaruformat/simd.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/spamsum.h b/include/aaruformat/spamsum.h index c42340e..5f8c508 100644 --- a/include/aaruformat/spamsum.h +++ b/include/aaruformat/spamsum.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/include/aaruformat/structs.h b/include/aaruformat/structs.h index be5dc59..f0b193f 100644 --- a/include/aaruformat/structs.h +++ b/include/aaruformat/structs.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/close.c b/src/close.c index 71873cf..a5e1a7e 100644 --- a/src/close.c +++ b/src/close.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/crc64/arm_vmull.c b/src/crc64/arm_vmull.c index 4c1a647..fc19ea5 100644 --- a/src/crc64/arm_vmull.c +++ b/src/crc64/arm_vmull.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright sse2neon.h contributors * * sse2neon is freely redistributable under the MIT License. diff --git a/src/crc64/arm_vmull.h b/src/crc64/arm_vmull.h index 7672300..9831831 100644 --- a/src/crc64/arm_vmull.h +++ b/src/crc64/arm_vmull.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/crc64/crc64.c b/src/crc64/crc64.c index a570946..8e2c6e7 100644 --- a/src/crc64/crc64.c +++ b/src/crc64/crc64.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/crc64/crc64_clmul.c b/src/crc64/crc64_clmul.c index e610fdd..d90f696 100644 --- a/src/crc64/crc64_clmul.c +++ b/src/crc64/crc64_clmul.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/crc64/crc64_vmull.c b/src/crc64/crc64_vmull.c index a793197..c0f05a1 100644 --- a/src/crc64/crc64_vmull.c +++ b/src/crc64/crc64_vmull.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/cst.c b/src/cst.c index 28edadc..645b3ec 100644 --- a/src/cst.c +++ b/src/cst.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/ecc_cd.c b/src/ecc_cd.c index a960ae9..03ac994 100644 --- a/src/ecc_cd.c +++ b/src/ecc_cd.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * ECC algorithm from ECM(c) 2002-2011 Neill Corlett * * This library is free software; you can redistribute it and/or modify diff --git a/src/flac.c b/src/flac.c index 77ade97..ef40b6c 100644 --- a/src/flac.c +++ b/src/flac.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/helpers.c b/src/helpers.c index d1b6d2d..33cbf48 100644 --- a/src/helpers.c +++ b/src/helpers.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/identify.c b/src/identify.c index e160b62..9ada6ba 100644 --- a/src/identify.c +++ b/src/identify.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/lzma.c b/src/lzma.c index 4fda56b..fea43f9 100644 --- a/src/lzma.c +++ b/src/lzma.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2021 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/open.c b/src/open.c index 8ccce9e..e3d563b 100644 --- a/src/open.c +++ b/src/open.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/read.c b/src/read.c index b5c0fe6..731680d 100644 --- a/src/read.c +++ b/src/read.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/simd.c b/src/simd.c index e93f16e..6ebd9cf 100644 --- a/src/simd.c +++ b/src/simd.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/src/spamsum.c b/src/spamsum.c index 0917747..db46417 100644 --- a/src/spamsum.c +++ b/src/spamsum.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * Copyright (C) 2002 Andrew Tridgell * Copyright (C) 2006 ManTech International Corporation * Copyright (C) 2013 Helmut Grohne diff --git a/src/verify.c b/src/verify.c index be65a24..83bd8b1 100644 --- a/src/verify.c +++ b/src/verify.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/crc32.c b/tests/crc32.c index 615d29c..54ba33f 100644 --- a/tests/crc32.c +++ b/tests/crc32.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/crc32.h b/tests/crc32.h index a3507c7..af401ca 100644 --- a/tests/crc32.h +++ b/tests/crc32.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/crc64.cpp b/tests/crc64.cpp index fbf75aa..efa835c 100644 --- a/tests/crc64.cpp +++ b/tests/crc64.cpp @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/flac.cpp b/tests/flac.cpp index 560571c..8bfa14d 100644 --- a/tests/flac.cpp +++ b/tests/flac.cpp @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/lzma.cpp b/tests/lzma.cpp index 67644a4..a79a4dc 100644 --- a/tests/lzma.cpp +++ b/tests/lzma.cpp @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2021 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/sha256.cpp b/tests/sha256.cpp index db3d6bc..95bae02 100644 --- a/tests/sha256.cpp +++ b/tests/sha256.cpp @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tests/spamsum.cpp b/tests/spamsum.cpp index ce21e37..80b05ba 100644 --- a/tests/spamsum.cpp +++ b/tests/spamsum.cpp @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as diff --git a/tool/aaruformattool.h b/tool/aaruformattool.h index 2f804bc..16f7f9d 100644 --- a/tool/aaruformattool.h +++ b/tool/aaruformattool.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/commands.c b/tool/commands.c index 7b0b370..ab71367 100644 --- a/tool/commands.c +++ b/tool/commands.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/commands.h b/tool/commands.h index b0507f4..1718fa8 100644 --- a/tool/commands.h +++ b/tool/commands.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/ecc_cd.c b/tool/ecc_cd.c index 3ae4516..81908b0 100644 --- a/tool/ecc_cd.c +++ b/tool/ecc_cd.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/helpers.c b/tool/helpers.c index 28c02c6..b0e9ea6 100644 --- a/tool/helpers.c +++ b/tool/helpers.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/identify.c b/tool/identify.c index 4d5c9b5..c96f2ff 100644 --- a/tool/identify.c +++ b/tool/identify.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/info.c b/tool/info.c index fa9f931..33c9677 100644 --- a/tool/info.c +++ b/tool/info.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/main.c b/tool/main.c index d7313b5..ab4f872 100644 --- a/tool/main.c +++ b/tool/main.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/printhex.c b/tool/printhex.c index 7c25350..b03aff7 100644 --- a/tool/printhex.c +++ b/tool/printhex.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/read.c b/tool/read.c index f908eba..c116023 100644 --- a/tool/read.c +++ b/tool/read.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/usage.c b/tool/usage.c index e331ea4..9f799b4 100644 --- a/tool/usage.c +++ b/tool/usage.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/usage.h b/tool/usage.h index ab5fd64..1fce612 100644 --- a/tool/usage.h +++ b/tool/usage.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/verify.c b/tool/verify.c index d21d0dc..88efaf3 100644 --- a/tool/verify.c +++ b/tool/verify.c @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tool/version.h b/tool/version.h index c6d3770..8feff86 100644 --- a/tool/version.h +++ b/tool/version.h @@ -1,6 +1,6 @@ /* * This file is part of the Aaru Data Preservation Suite. - * Copyright (c) 2019-2022 Natalia Portillo. + * Copyright (c) 2019-2025 Natalia Portillo. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License