From d6f052d2067a2690bf3b69c6691c67629b93f54f Mon Sep 17 00:00:00 2001 From: Kathryn Baldauf Date: Mon, 5 Jan 2026 13:09:34 -0800 Subject: [PATCH] Update license header on all files to include the current year (#1024) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Motivation and Context Now that we're in 2026, we need to update the license headers on all the files. Unfortunately, Hawkeye doesn't have an attribute for the current year to help us avoid this in the future. Instead, I had to work around this by doing the following: 1. Update licenserc.toml with: ``` [properties] ... (other properties) currentYear = "2026" ```   2. Update scripts/license-header.txt with ``` Copyright ©{{ " " }}{%- set created = attrs.git_file_created_year or attrs.disk_file_created_year -%}{%- set modified = props["currentYear"] -%}{%- if created != modified -%} {{created}}-{{modified}}{%- else -%}{{created}}{%- endif -%}{{ " " }}{{ props["copyrightOwner"] }}. ``` Then I removed these two changes before committing. After this PR is merged, all files will have recently had git updates, so the existing code for setting the modified year should work as intended. Signed-off-by: Kathryn Baldauf --- Makefile | 2 +- Protobuf.Makefile | 2 +- Sources/CAuditToken/AuditToken.c | 2 +- Sources/CAuditToken/include/AuditToken.h | 2 +- Sources/CLI/ContainerCLI.swift | 2 +- Sources/CVersion/Version.c | 2 +- Sources/CVersion/include/Version.h | 2 +- Sources/ContainerBuild/BuildAPI+Extensions.swift | 2 +- Sources/ContainerBuild/BuildFSSync.swift | 2 +- Sources/ContainerBuild/BuildFile.swift | 2 +- Sources/ContainerBuild/BuildImageResolver.swift | 2 +- Sources/ContainerBuild/BuildPipelineHandler.swift | 2 +- Sources/ContainerBuild/BuildRemoteContentProxy.swift | 2 +- Sources/ContainerBuild/BuildStdio.swift | 2 +- Sources/ContainerBuild/Builder.grpc.swift | 2 +- Sources/ContainerBuild/Builder.pb.swift | 2 +- Sources/ContainerBuild/Builder.swift | 2 +- Sources/ContainerBuild/Globber.swift | 2 +- Sources/ContainerBuild/TerminalCommand.swift | 2 +- Sources/ContainerBuild/URL+Extensions.swift | 2 +- Sources/ContainerClient/Arch.swift | 2 +- Sources/ContainerClient/Archiver.swift | 2 +- Sources/ContainerClient/Array+Dedupe.swift | 2 +- Sources/ContainerClient/ContainerizationProgressAdapter.swift | 2 +- Sources/ContainerClient/Core/Bundle.swift | 2 +- Sources/ContainerClient/Core/ClientContainer.swift | 2 +- Sources/ContainerClient/Core/ClientDiskUsage.swift | 2 +- Sources/ContainerClient/Core/ClientHealthCheck.swift | 2 +- Sources/ContainerClient/Core/ClientImage.swift | 2 +- Sources/ContainerClient/Core/ClientKernel.swift | 2 +- Sources/ContainerClient/Core/ClientNetwork.swift | 2 +- Sources/ContainerClient/Core/ClientProcess.swift | 2 +- Sources/ContainerClient/Core/ClientVolume.swift | 2 +- Sources/ContainerClient/Core/Constants.swift | 2 +- Sources/ContainerClient/Core/ContainerConfiguration.swift | 2 +- Sources/ContainerClient/Core/ContainerCreateOptions.swift | 2 +- Sources/ContainerClient/Core/ContainerSnapshot.swift | 2 +- Sources/ContainerClient/Core/ContainerStats.swift | 2 +- Sources/ContainerClient/Core/ContainerStopOptions.swift | 2 +- Sources/ContainerClient/Core/DiskUsage.swift | 2 +- Sources/ContainerClient/Core/Filesystem.swift | 2 +- Sources/ContainerClient/Core/ImageDescription.swift | 2 +- Sources/ContainerClient/Core/ImageDetail.swift | 2 +- Sources/ContainerClient/Core/ProcessConfiguration.swift | 2 +- Sources/ContainerClient/Core/PublishPort.swift | 2 +- Sources/ContainerClient/Core/PublishSocket.swift | 2 +- Sources/ContainerClient/Core/RuntimeStatus.swift | 2 +- Sources/ContainerClient/Core/SystemHealth.swift | 2 +- Sources/ContainerClient/Core/Volume.swift | 2 +- Sources/ContainerClient/Core/XPC+.swift | 2 +- Sources/ContainerClient/ExitMonitor.swift | 2 +- Sources/ContainerClient/FileDownloader.swift | 2 +- Sources/ContainerClient/HostDNSResolver.swift | 2 +- Sources/ContainerClient/Measurement+Parse.swift | 2 +- Sources/ContainerClient/ProcessIO.swift | 2 +- Sources/ContainerClient/ProgressUpdateClient.swift | 2 +- Sources/ContainerClient/ProgressUpdateService.swift | 2 +- Sources/ContainerClient/RequestScheme.swift | 2 +- Sources/ContainerClient/SandboxClient.swift | 2 +- Sources/ContainerClient/SandboxRoutes.swift | 2 +- Sources/ContainerClient/SandboxSnapshot.swift | 2 +- Sources/ContainerClient/SignalThreshold.swift | 2 +- Sources/ContainerClient/String+Extensions.swift | 2 +- Sources/ContainerClient/TableOutput.swift | 2 +- Sources/ContainerCommands/Application.swift | 2 +- Sources/ContainerCommands/BuildCommand.swift | 2 +- Sources/ContainerCommands/Builder/Builder.swift | 2 +- Sources/ContainerCommands/Builder/BuilderDelete.swift | 2 +- Sources/ContainerCommands/Builder/BuilderStart.swift | 2 +- Sources/ContainerCommands/Builder/BuilderStatus.swift | 2 +- Sources/ContainerCommands/Builder/BuilderStop.swift | 2 +- Sources/ContainerCommands/Codable+JSON.swift | 2 +- Sources/ContainerCommands/Container/ContainerCreate.swift | 2 +- Sources/ContainerCommands/Container/ContainerDelete.swift | 2 +- Sources/ContainerCommands/Container/ContainerExec.swift | 2 +- Sources/ContainerCommands/Container/ContainerInspect.swift | 2 +- Sources/ContainerCommands/Container/ContainerKill.swift | 2 +- Sources/ContainerCommands/Container/ContainerList.swift | 2 +- Sources/ContainerCommands/Container/ContainerLogs.swift | 2 +- Sources/ContainerCommands/Container/ContainerRun.swift | 2 +- Sources/ContainerCommands/Container/ContainerStart.swift | 2 +- Sources/ContainerCommands/Container/ContainerStats.swift | 2 +- Sources/ContainerCommands/Container/ContainerStop.swift | 2 +- Sources/ContainerCommands/Container/ProcessUtils.swift | 2 +- Sources/ContainerCommands/DefaultCommand.swift | 2 +- Sources/ContainerCommands/Image/ImageCommand.swift | 2 +- Sources/ContainerCommands/Image/ImageDelete.swift | 2 +- Sources/ContainerCommands/Image/ImageInspect.swift | 2 +- Sources/ContainerCommands/Image/ImageList.swift | 2 +- Sources/ContainerCommands/Image/ImageLoad.swift | 2 +- Sources/ContainerCommands/Image/ImagePrune.swift | 2 +- Sources/ContainerCommands/Image/ImagePull.swift | 2 +- Sources/ContainerCommands/Image/ImagePush.swift | 2 +- Sources/ContainerCommands/Image/ImageSave.swift | 2 +- Sources/ContainerCommands/Image/ImageTag.swift | 2 +- Sources/ContainerCommands/Network/NetworkCommand.swift | 2 +- Sources/ContainerCommands/Network/NetworkCreate.swift | 2 +- Sources/ContainerCommands/Network/NetworkDelete.swift | 2 +- Sources/ContainerCommands/Network/NetworkInspect.swift | 2 +- Sources/ContainerCommands/Network/NetworkList.swift | 2 +- Sources/ContainerCommands/Network/NetworkPrune.swift | 2 +- Sources/ContainerCommands/Registry/Login.swift | 2 +- Sources/ContainerCommands/Registry/Logout.swift | 2 +- Sources/ContainerCommands/Registry/RegistryCommand.swift | 2 +- Sources/ContainerCommands/System/DNS/DNSCreate.swift | 2 +- Sources/ContainerCommands/System/DNS/DNSDelete.swift | 2 +- Sources/ContainerCommands/System/DNS/DNSList.swift | 2 +- Sources/ContainerCommands/System/Kernel/KernelSet.swift | 2 +- Sources/ContainerCommands/System/Property/PropertyClear.swift | 2 +- Sources/ContainerCommands/System/Property/PropertyGet.swift | 2 +- Sources/ContainerCommands/System/Property/PropertyList.swift | 2 +- Sources/ContainerCommands/System/Property/PropertySet.swift | 2 +- Sources/ContainerCommands/System/SystemCommand.swift | 2 +- Sources/ContainerCommands/System/SystemDF.swift | 2 +- Sources/ContainerCommands/System/SystemDNS.swift | 2 +- Sources/ContainerCommands/System/SystemKernel.swift | 2 +- Sources/ContainerCommands/System/SystemLogs.swift | 2 +- Sources/ContainerCommands/System/SystemProperty.swift | 2 +- Sources/ContainerCommands/System/SystemStart.swift | 2 +- Sources/ContainerCommands/System/SystemStatus.swift | 2 +- Sources/ContainerCommands/System/SystemStop.swift | 2 +- Sources/ContainerCommands/System/Version.swift | 2 +- Sources/ContainerCommands/Volume/VolumeCommand.swift | 2 +- Sources/ContainerCommands/Volume/VolumeCreate.swift | 2 +- Sources/ContainerCommands/Volume/VolumeDelete.swift | 2 +- Sources/ContainerCommands/Volume/VolumeInspect.swift | 2 +- Sources/ContainerCommands/Volume/VolumeList.swift | 2 +- Sources/ContainerCommands/Volume/VolumePrune.swift | 2 +- Sources/ContainerLog/OSLogHandler.swift | 2 +- Sources/ContainerLog/StderrLogHandler.swift | 2 +- Sources/ContainerPersistence/DefaultsStore.swift | 2 +- Sources/ContainerPersistence/EntityStore.swift | 2 +- Sources/ContainerPlugin/ApplicationRoot.swift | 2 +- Sources/ContainerPlugin/InstallRoot.swift | 2 +- Sources/ContainerPlugin/LaunchPlist.swift | 2 +- Sources/ContainerPlugin/Plugin.swift | 2 +- Sources/ContainerPlugin/PluginConfig.swift | 2 +- Sources/ContainerPlugin/PluginFactory.swift | 2 +- Sources/ContainerPlugin/PluginLoader.swift | 2 +- Sources/ContainerPlugin/ServiceManager.swift | 2 +- Sources/ContainerVersion/Bundle+AppBundle.swift | 2 +- Sources/ContainerVersion/CommandLine+Executable.swift | 2 +- Sources/ContainerVersion/ReleaseVersion.swift | 2 +- Sources/ContainerXPC/XPCClient.swift | 2 +- Sources/ContainerXPC/XPCMessage.swift | 2 +- Sources/ContainerXPC/XPCServer.swift | 2 +- Sources/DNSServer/DNSHandler.swift | 2 +- Sources/DNSServer/DNSServer+Handle.swift | 2 +- Sources/DNSServer/DNSServer.swift | 2 +- Sources/DNSServer/Handlers/CompositeResolver.swift | 2 +- Sources/DNSServer/Handlers/HostTableResolver.swift | 2 +- Sources/DNSServer/Handlers/NxDomainResolver.swift | 2 +- Sources/DNSServer/Handlers/StandardQueryValidator.swift | 2 +- Sources/DNSServer/Types.swift | 2 +- Sources/Helpers/APIServer/APIServer+Start.swift | 2 +- Sources/Helpers/APIServer/APIServer.swift | 2 +- Sources/Helpers/APIServer/ContainerDNSHandler.swift | 2 +- Sources/Helpers/Images/ImagesHelper.swift | 2 +- Sources/Helpers/NetworkVmnet/NetworkVmnetHelper+Start.swift | 2 +- Sources/Helpers/NetworkVmnet/NetworkVmnetHelper.swift | 2 +- Sources/Helpers/RuntimeLinux/IsolatedInterfaceStrategy.swift | 2 +- Sources/Helpers/RuntimeLinux/NonisolatedInterfaceStrategy.swift | 2 +- Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper+Start.swift | 2 +- Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper.swift | 2 +- .../ContainerAPIService/Containers/ContainersHarness.swift | 2 +- .../ContainerAPIService/DiskUsage/DiskUsageHarness.swift | 2 +- .../ContainerAPIService/DiskUsage/DiskUsageService.swift | 2 +- .../ContainerAPIService/HealthCheck/HealthCheckHarness.swift | 2 +- Sources/Services/ContainerAPIService/Kernel/KernelHarness.swift | 2 +- Sources/Services/ContainerAPIService/Kernel/KernelService.swift | 2 +- .../Services/ContainerAPIService/Networks/NetworksHarness.swift | 2 +- .../Services/ContainerAPIService/Networks/NetworksService.swift | 2 +- .../Services/ContainerAPIService/Plugin/PluginsHarness.swift | 2 +- .../Services/ContainerAPIService/Plugin/PluginsService.swift | 2 +- .../Services/ContainerAPIService/Volumes/VolumesHarness.swift | 2 +- .../Services/ContainerAPIService/Volumes/VolumesService.swift | 2 +- .../ContainerImagesService/Client/ImageServiceXPCKeys.swift | 2 +- .../ContainerImagesService/Client/ImageServiceXPCRoutes.swift | 2 +- .../Client/RemoteContentStoreClient.swift | 2 +- .../ContainerImagesService/Server/ContentServiceHarness.swift | 2 +- .../ContainerImagesService/Server/ContentStoreService.swift | 2 +- .../Services/ContainerImagesService/Server/ImageService.swift | 2 +- .../ContainerImagesService/Server/ImagesServiceHarness.swift | 2 +- .../Services/ContainerImagesService/Server/SnapshotStore.swift | 2 +- .../ContainerNetworkService/AllocationOnlyVmnetNetwork.swift | 2 +- Sources/Services/ContainerNetworkService/Attachment.swift | 2 +- .../Services/ContainerNetworkService/AttachmentAllocator.swift | 2 +- .../ContainerNetworkService/AttachmentConfiguration.swift | 2 +- Sources/Services/ContainerNetworkService/Network.swift | 2 +- Sources/Services/ContainerNetworkService/NetworkClient.swift | 2 +- .../Services/ContainerNetworkService/NetworkConfiguration.swift | 2 +- Sources/Services/ContainerNetworkService/NetworkKeys.swift | 2 +- Sources/Services/ContainerNetworkService/NetworkMode.swift | 2 +- Sources/Services/ContainerNetworkService/NetworkRoutes.swift | 2 +- Sources/Services/ContainerNetworkService/NetworkService.swift | 2 +- Sources/Services/ContainerNetworkService/NetworkState.swift | 2 +- .../Services/ContainerNetworkService/ReservedVmnetNetwork.swift | 2 +- .../Services/ContainerSandboxService/InterfaceStrategy.swift | 2 +- Sources/SocketForwarder/ConnectHandler.swift | 2 +- Sources/SocketForwarder/GlueHandler.swift | 2 +- Sources/SocketForwarder/LRUCache.swift | 2 +- Sources/SocketForwarder/SocketForwarder.swift | 2 +- Sources/SocketForwarder/SocketForwarderResult.swift | 2 +- Sources/SocketForwarder/TCPForwarder.swift | 2 +- Sources/SocketForwarder/UDPForwarder.swift | 2 +- Sources/TerminalProgress/Int+Formatted.swift | 2 +- Sources/TerminalProgress/Int64+Formatted.swift | 2 +- Sources/TerminalProgress/ProgressBar+Add.swift | 2 +- Sources/TerminalProgress/ProgressBar+State.swift | 2 +- Sources/TerminalProgress/ProgressBar+Terminal.swift | 2 +- Sources/TerminalProgress/ProgressBar.swift | 2 +- Sources/TerminalProgress/ProgressConfig.swift | 2 +- Sources/TerminalProgress/ProgressTaskCoordinator.swift | 2 +- Sources/TerminalProgress/ProgressTheme.swift | 2 +- Sources/TerminalProgress/ProgressUpdate.swift | 2 +- Sources/TerminalProgress/StandardError.swift | 2 +- Tests/CLITests/Subcommands/Build/CLIBuildBase.swift | 2 +- Tests/CLITests/Subcommands/Build/CLIBuilderEnvOnlyTest.swift | 2 +- Tests/CLITests/Subcommands/Build/CLIBuilderLifecycleTest.swift | 2 +- .../CLITests/Subcommands/Build/CLIBuilderLocalOutputTest.swift | 2 +- Tests/CLITests/Subcommands/Build/CLIBuilderTarExportTest.swift | 2 +- Tests/CLITests/Subcommands/Build/CLIBuilderTest.swift | 2 +- Tests/CLITests/Subcommands/Build/CLIRunBase.swift | 2 +- Tests/CLITests/Subcommands/Build/TestCLITermIO.swift | 2 +- Tests/CLITests/Subcommands/Containers/TestCLICreate.swift | 2 +- Tests/CLITests/Subcommands/Containers/TestCLIExec.swift | 2 +- Tests/CLITests/Subcommands/Containers/TestCLIRmRace.swift | 2 +- Tests/CLITests/Subcommands/Containers/TestCLIStats.swift | 2 +- Tests/CLITests/Subcommands/Images/TestCLIImagesCommand.swift | 2 +- Tests/CLITests/Subcommands/Networks/TestCLINetwork.swift | 2 +- Tests/CLITests/Subcommands/Plugins/TestCLIPluginErrors.swift | 2 +- Tests/CLITests/Subcommands/Run/TestCLIRunCommand.swift | 2 +- Tests/CLITests/Subcommands/Run/TestCLIRunLifecycle.swift | 2 +- Tests/CLITests/Subcommands/System/TestCLIVersion.swift | 2 +- Tests/CLITests/Subcommands/System/TestKernelSet.swift | 2 +- .../CLITests/Subcommands/Volumes/TestCLIAnonymousVolumes.swift | 2 +- Tests/CLITests/Subcommands/Volumes/TestCLIVolumes.swift | 2 +- Tests/CLITests/TestCLINoParallelCases.swift | 2 +- Tests/CLITests/Utilities/CLITest.swift | 2 +- Tests/ContainerBuildTests/BuildFile.swift | 2 +- Tests/ContainerBuildTests/BuilderExtensionsTests.swift | 2 +- Tests/ContainerBuildTests/GlobberTests.swift | 2 +- Tests/ContainerClientTests/DiskUsageTests.swift | 2 +- Tests/ContainerClientTests/HostDNSResolverTest.swift | 2 +- Tests/ContainerClientTests/Measurement+ParseTests.swift | 2 +- Tests/ContainerClientTests/RequestSchemeTests.swift | 2 +- Tests/ContainerClientTests/VolumeValidationTests.swift | 2 +- .../ContainerNetworkServiceTests/NetworkConfigurationTest.swift | 2 +- Tests/ContainerPluginTests/CommandLine+ExecutableTest.swift | 2 +- Tests/ContainerPluginTests/MockPluginFactory.swift | 2 +- Tests/ContainerPluginTests/PluginConfigTest.swift | 2 +- Tests/ContainerPluginTests/PluginFactoryTest.swift | 2 +- Tests/ContainerPluginTests/PluginLoaderTest.swift | 2 +- Tests/ContainerPluginTests/PluginTest.swift | 2 +- Tests/DNSServerTests/CompositeResolverTest.swift | 2 +- Tests/DNSServerTests/HostTableResolverTest.swift | 2 +- Tests/DNSServerTests/MockHandlers.swift | 2 +- Tests/DNSServerTests/NxDomainResolverTest.swift | 2 +- Tests/DNSServerTests/StandardQueryValidatorTest.swift | 2 +- Tests/SocketForwarderTests/ConnectHandlerRaceTest.swift | 2 +- Tests/SocketForwarderTests/LRUCacheTest.swift | 2 +- Tests/SocketForwarderTests/TCPEchoHandler.swift | 2 +- Tests/SocketForwarderTests/TCPEchoServer.swift | 2 +- Tests/SocketForwarderTests/TCPForwarderTest.swift | 2 +- Tests/SocketForwarderTests/UDPEchoHandler.swift | 2 +- Tests/SocketForwarderTests/UDPEchoServer.swift | 2 +- Tests/SocketForwarderTests/UDPForwarderTest.swift | 2 +- Tests/TerminalProgressTests/ProgressBarTests.swift | 2 +- scripts/ensure-container-stopped.sh | 2 +- scripts/ensure-hawkeye-exists.sh | 2 +- scripts/install-hawkeye.sh | 2 +- scripts/install-init.sh | 2 +- scripts/make-docs.sh | 2 +- scripts/uninstall-container.sh | 2 +- 274 files changed, 274 insertions(+), 274 deletions(-) diff --git a/Makefile b/Makefile index 27ddd583..3f854815 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/Protobuf.Makefile b/Protobuf.Makefile index cdff269c..2ae284d8 100644 --- a/Protobuf.Makefile +++ b/Protobuf.Makefile @@ -1,4 +1,4 @@ -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/CAuditToken/AuditToken.c b/Sources/CAuditToken/AuditToken.c index 70b191b4..4820b9e8 100644 --- a/Sources/CAuditToken/AuditToken.c +++ b/Sources/CAuditToken/AuditToken.c @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/CAuditToken/include/AuditToken.h b/Sources/CAuditToken/include/AuditToken.h index 802b828d..378d3798 100644 --- a/Sources/CAuditToken/include/AuditToken.h +++ b/Sources/CAuditToken/include/AuditToken.h @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/CLI/ContainerCLI.swift b/Sources/CLI/ContainerCLI.swift index d838500d..89261cc3 100644 --- a/Sources/CLI/ContainerCLI.swift +++ b/Sources/CLI/ContainerCLI.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/CVersion/Version.c b/Sources/CVersion/Version.c index 9209bfbe..42694b86 100644 --- a/Sources/CVersion/Version.c +++ b/Sources/CVersion/Version.c @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/CVersion/include/Version.h b/Sources/CVersion/include/Version.h index f265a202..e8f1e711 100644 --- a/Sources/CVersion/include/Version.h +++ b/Sources/CVersion/include/Version.h @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildAPI+Extensions.swift b/Sources/ContainerBuild/BuildAPI+Extensions.swift index 7e9e3be0..e90a2383 100644 --- a/Sources/ContainerBuild/BuildAPI+Extensions.swift +++ b/Sources/ContainerBuild/BuildAPI+Extensions.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildFSSync.swift b/Sources/ContainerBuild/BuildFSSync.swift index c4cfb352..db6d19f0 100644 --- a/Sources/ContainerBuild/BuildFSSync.swift +++ b/Sources/ContainerBuild/BuildFSSync.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildFile.swift b/Sources/ContainerBuild/BuildFile.swift index cfe1a24e..98f704c9 100644 --- a/Sources/ContainerBuild/BuildFile.swift +++ b/Sources/ContainerBuild/BuildFile.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildImageResolver.swift b/Sources/ContainerBuild/BuildImageResolver.swift index f0d45ee1..edad4894 100644 --- a/Sources/ContainerBuild/BuildImageResolver.swift +++ b/Sources/ContainerBuild/BuildImageResolver.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildPipelineHandler.swift b/Sources/ContainerBuild/BuildPipelineHandler.swift index 197473a9..6e91a472 100644 --- a/Sources/ContainerBuild/BuildPipelineHandler.swift +++ b/Sources/ContainerBuild/BuildPipelineHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildRemoteContentProxy.swift b/Sources/ContainerBuild/BuildRemoteContentProxy.swift index bfe00b48..e05185f0 100644 --- a/Sources/ContainerBuild/BuildRemoteContentProxy.swift +++ b/Sources/ContainerBuild/BuildRemoteContentProxy.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/BuildStdio.swift b/Sources/ContainerBuild/BuildStdio.swift index 7916deae..8df54ba7 100644 --- a/Sources/ContainerBuild/BuildStdio.swift +++ b/Sources/ContainerBuild/BuildStdio.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/Builder.grpc.swift b/Sources/ContainerBuild/Builder.grpc.swift index 349611fe..5c39eff2 100644 --- a/Sources/ContainerBuild/Builder.grpc.swift +++ b/Sources/ContainerBuild/Builder.grpc.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/Builder.pb.swift b/Sources/ContainerBuild/Builder.pb.swift index d0fe2d06..5d340256 100644 --- a/Sources/ContainerBuild/Builder.pb.swift +++ b/Sources/ContainerBuild/Builder.pb.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/Builder.swift b/Sources/ContainerBuild/Builder.swift index 14cc5ffa..a40be4b4 100644 --- a/Sources/ContainerBuild/Builder.swift +++ b/Sources/ContainerBuild/Builder.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/Globber.swift b/Sources/ContainerBuild/Globber.swift index 5d1344f3..baecf60d 100644 --- a/Sources/ContainerBuild/Globber.swift +++ b/Sources/ContainerBuild/Globber.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/TerminalCommand.swift b/Sources/ContainerBuild/TerminalCommand.swift index 4149b7de..24b255c2 100644 --- a/Sources/ContainerBuild/TerminalCommand.swift +++ b/Sources/ContainerBuild/TerminalCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerBuild/URL+Extensions.swift b/Sources/ContainerBuild/URL+Extensions.swift index 672585f4..4f0bd7ec 100644 --- a/Sources/ContainerBuild/URL+Extensions.swift +++ b/Sources/ContainerBuild/URL+Extensions.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Arch.swift b/Sources/ContainerClient/Arch.swift index 12ae5fcf..24489c6f 100644 --- a/Sources/ContainerClient/Arch.swift +++ b/Sources/ContainerClient/Arch.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Archiver.swift b/Sources/ContainerClient/Archiver.swift index eea80108..5651668b 100644 --- a/Sources/ContainerClient/Archiver.swift +++ b/Sources/ContainerClient/Archiver.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Array+Dedupe.swift b/Sources/ContainerClient/Array+Dedupe.swift index 6a48ac48..75a0c758 100644 --- a/Sources/ContainerClient/Array+Dedupe.swift +++ b/Sources/ContainerClient/Array+Dedupe.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/ContainerizationProgressAdapter.swift b/Sources/ContainerClient/ContainerizationProgressAdapter.swift index 99f472a5..3feb0310 100644 --- a/Sources/ContainerClient/ContainerizationProgressAdapter.swift +++ b/Sources/ContainerClient/ContainerizationProgressAdapter.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/Bundle.swift b/Sources/ContainerClient/Core/Bundle.swift index 34758128..cb4c34c0 100644 --- a/Sources/ContainerClient/Core/Bundle.swift +++ b/Sources/ContainerClient/Core/Bundle.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientContainer.swift b/Sources/ContainerClient/Core/ClientContainer.swift index cf4cc656..76f91af6 100644 --- a/Sources/ContainerClient/Core/ClientContainer.swift +++ b/Sources/ContainerClient/Core/ClientContainer.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientDiskUsage.swift b/Sources/ContainerClient/Core/ClientDiskUsage.swift index 99e0c165..30c1391e 100644 --- a/Sources/ContainerClient/Core/ClientDiskUsage.swift +++ b/Sources/ContainerClient/Core/ClientDiskUsage.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientHealthCheck.swift b/Sources/ContainerClient/Core/ClientHealthCheck.swift index d7fd918a..2953b08b 100644 --- a/Sources/ContainerClient/Core/ClientHealthCheck.swift +++ b/Sources/ContainerClient/Core/ClientHealthCheck.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientImage.swift b/Sources/ContainerClient/Core/ClientImage.swift index 7cac6700..76334982 100644 --- a/Sources/ContainerClient/Core/ClientImage.swift +++ b/Sources/ContainerClient/Core/ClientImage.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientKernel.swift b/Sources/ContainerClient/Core/ClientKernel.swift index d0a3670f..81175ae3 100644 --- a/Sources/ContainerClient/Core/ClientKernel.swift +++ b/Sources/ContainerClient/Core/ClientKernel.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientNetwork.swift b/Sources/ContainerClient/Core/ClientNetwork.swift index 80106865..4bbcb8a2 100644 --- a/Sources/ContainerClient/Core/ClientNetwork.swift +++ b/Sources/ContainerClient/Core/ClientNetwork.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientProcess.swift b/Sources/ContainerClient/Core/ClientProcess.swift index b77dde88..51f17160 100644 --- a/Sources/ContainerClient/Core/ClientProcess.swift +++ b/Sources/ContainerClient/Core/ClientProcess.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ClientVolume.swift b/Sources/ContainerClient/Core/ClientVolume.swift index f5f90784..25c94c09 100644 --- a/Sources/ContainerClient/Core/ClientVolume.swift +++ b/Sources/ContainerClient/Core/ClientVolume.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/Constants.swift b/Sources/ContainerClient/Core/Constants.swift index ce2ef811..d5de87f4 100644 --- a/Sources/ContainerClient/Core/Constants.swift +++ b/Sources/ContainerClient/Core/Constants.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ContainerConfiguration.swift b/Sources/ContainerClient/Core/ContainerConfiguration.swift index 468ca050..2e45db3b 100644 --- a/Sources/ContainerClient/Core/ContainerConfiguration.swift +++ b/Sources/ContainerClient/Core/ContainerConfiguration.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ContainerCreateOptions.swift b/Sources/ContainerClient/Core/ContainerCreateOptions.swift index 287e52cc..c845a9b3 100644 --- a/Sources/ContainerClient/Core/ContainerCreateOptions.swift +++ b/Sources/ContainerClient/Core/ContainerCreateOptions.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ContainerSnapshot.swift b/Sources/ContainerClient/Core/ContainerSnapshot.swift index 21aaa8f5..1601650d 100644 --- a/Sources/ContainerClient/Core/ContainerSnapshot.swift +++ b/Sources/ContainerClient/Core/ContainerSnapshot.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ContainerStats.swift b/Sources/ContainerClient/Core/ContainerStats.swift index 6c9abe3f..5371ca15 100644 --- a/Sources/ContainerClient/Core/ContainerStats.swift +++ b/Sources/ContainerClient/Core/ContainerStats.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ContainerStopOptions.swift b/Sources/ContainerClient/Core/ContainerStopOptions.swift index c6e8f73f..b0a1359c 100644 --- a/Sources/ContainerClient/Core/ContainerStopOptions.swift +++ b/Sources/ContainerClient/Core/ContainerStopOptions.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/DiskUsage.swift b/Sources/ContainerClient/Core/DiskUsage.swift index e187390c..594245c8 100644 --- a/Sources/ContainerClient/Core/DiskUsage.swift +++ b/Sources/ContainerClient/Core/DiskUsage.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/Filesystem.swift b/Sources/ContainerClient/Core/Filesystem.swift index 7ba72412..bd941d5d 100644 --- a/Sources/ContainerClient/Core/Filesystem.swift +++ b/Sources/ContainerClient/Core/Filesystem.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ImageDescription.swift b/Sources/ContainerClient/Core/ImageDescription.swift index 3393178b..c8105bf5 100644 --- a/Sources/ContainerClient/Core/ImageDescription.swift +++ b/Sources/ContainerClient/Core/ImageDescription.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ImageDetail.swift b/Sources/ContainerClient/Core/ImageDetail.swift index f18a8968..b8f47a39 100644 --- a/Sources/ContainerClient/Core/ImageDetail.swift +++ b/Sources/ContainerClient/Core/ImageDetail.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/ProcessConfiguration.swift b/Sources/ContainerClient/Core/ProcessConfiguration.swift index cbc1fc8d..a0613bcd 100644 --- a/Sources/ContainerClient/Core/ProcessConfiguration.swift +++ b/Sources/ContainerClient/Core/ProcessConfiguration.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/PublishPort.swift b/Sources/ContainerClient/Core/PublishPort.swift index e3690659..c9d48860 100644 --- a/Sources/ContainerClient/Core/PublishPort.swift +++ b/Sources/ContainerClient/Core/PublishPort.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/PublishSocket.swift b/Sources/ContainerClient/Core/PublishSocket.swift index fdba2004..13108493 100644 --- a/Sources/ContainerClient/Core/PublishSocket.swift +++ b/Sources/ContainerClient/Core/PublishSocket.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/RuntimeStatus.swift b/Sources/ContainerClient/Core/RuntimeStatus.swift index e075a18a..a3238e69 100644 --- a/Sources/ContainerClient/Core/RuntimeStatus.swift +++ b/Sources/ContainerClient/Core/RuntimeStatus.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/SystemHealth.swift b/Sources/ContainerClient/Core/SystemHealth.swift index 90a20d18..d8a1136a 100644 --- a/Sources/ContainerClient/Core/SystemHealth.swift +++ b/Sources/ContainerClient/Core/SystemHealth.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/Volume.swift b/Sources/ContainerClient/Core/Volume.swift index bc766501..d7c06dcb 100644 --- a/Sources/ContainerClient/Core/Volume.swift +++ b/Sources/ContainerClient/Core/Volume.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Core/XPC+.swift b/Sources/ContainerClient/Core/XPC+.swift index 41370998..7f6459d2 100644 --- a/Sources/ContainerClient/Core/XPC+.swift +++ b/Sources/ContainerClient/Core/XPC+.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/ExitMonitor.swift b/Sources/ContainerClient/ExitMonitor.swift index 25ebb51f..4fa14603 100644 --- a/Sources/ContainerClient/ExitMonitor.swift +++ b/Sources/ContainerClient/ExitMonitor.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/FileDownloader.swift b/Sources/ContainerClient/FileDownloader.swift index 85423046..8024636a 100644 --- a/Sources/ContainerClient/FileDownloader.swift +++ b/Sources/ContainerClient/FileDownloader.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/HostDNSResolver.swift b/Sources/ContainerClient/HostDNSResolver.swift index 4b096513..5e355b33 100644 --- a/Sources/ContainerClient/HostDNSResolver.swift +++ b/Sources/ContainerClient/HostDNSResolver.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/Measurement+Parse.swift b/Sources/ContainerClient/Measurement+Parse.swift index 58bc3ffb..5db9debe 100644 --- a/Sources/ContainerClient/Measurement+Parse.swift +++ b/Sources/ContainerClient/Measurement+Parse.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/ProcessIO.swift b/Sources/ContainerClient/ProcessIO.swift index 76c9600f..368a8e2f 100644 --- a/Sources/ContainerClient/ProcessIO.swift +++ b/Sources/ContainerClient/ProcessIO.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/ProgressUpdateClient.swift b/Sources/ContainerClient/ProgressUpdateClient.swift index c7940fa3..57e72beb 100644 --- a/Sources/ContainerClient/ProgressUpdateClient.swift +++ b/Sources/ContainerClient/ProgressUpdateClient.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/ProgressUpdateService.swift b/Sources/ContainerClient/ProgressUpdateService.swift index a50af72c..92fccabf 100644 --- a/Sources/ContainerClient/ProgressUpdateService.swift +++ b/Sources/ContainerClient/ProgressUpdateService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/RequestScheme.swift b/Sources/ContainerClient/RequestScheme.swift index 8dd62854..647a69a9 100644 --- a/Sources/ContainerClient/RequestScheme.swift +++ b/Sources/ContainerClient/RequestScheme.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/SandboxClient.swift b/Sources/ContainerClient/SandboxClient.swift index 722650b2..e459a91c 100644 --- a/Sources/ContainerClient/SandboxClient.swift +++ b/Sources/ContainerClient/SandboxClient.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/SandboxRoutes.swift b/Sources/ContainerClient/SandboxRoutes.swift index e6fef77d..61b60ad0 100644 --- a/Sources/ContainerClient/SandboxRoutes.swift +++ b/Sources/ContainerClient/SandboxRoutes.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/SandboxSnapshot.swift b/Sources/ContainerClient/SandboxSnapshot.swift index 7666ee9b..b48ce5e4 100644 --- a/Sources/ContainerClient/SandboxSnapshot.swift +++ b/Sources/ContainerClient/SandboxSnapshot.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/SignalThreshold.swift b/Sources/ContainerClient/SignalThreshold.swift index b40296a8..9b1c4cb8 100644 --- a/Sources/ContainerClient/SignalThreshold.swift +++ b/Sources/ContainerClient/SignalThreshold.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/String+Extensions.swift b/Sources/ContainerClient/String+Extensions.swift index 4df63149..3a23e27a 100644 --- a/Sources/ContainerClient/String+Extensions.swift +++ b/Sources/ContainerClient/String+Extensions.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerClient/TableOutput.swift b/Sources/ContainerClient/TableOutput.swift index a4474976..25cf3e16 100644 --- a/Sources/ContainerClient/TableOutput.swift +++ b/Sources/ContainerClient/TableOutput.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Application.swift b/Sources/ContainerCommands/Application.swift index 1b8b4981..543e597a 100644 --- a/Sources/ContainerCommands/Application.swift +++ b/Sources/ContainerCommands/Application.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/BuildCommand.swift b/Sources/ContainerCommands/BuildCommand.swift index d0f2afc3..bbb0f4fa 100644 --- a/Sources/ContainerCommands/BuildCommand.swift +++ b/Sources/ContainerCommands/BuildCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Builder/Builder.swift b/Sources/ContainerCommands/Builder/Builder.swift index f01d8574..b100f9e2 100644 --- a/Sources/ContainerCommands/Builder/Builder.swift +++ b/Sources/ContainerCommands/Builder/Builder.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Builder/BuilderDelete.swift b/Sources/ContainerCommands/Builder/BuilderDelete.swift index 24d32709..9a111691 100644 --- a/Sources/ContainerCommands/Builder/BuilderDelete.swift +++ b/Sources/ContainerCommands/Builder/BuilderDelete.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Builder/BuilderStart.swift b/Sources/ContainerCommands/Builder/BuilderStart.swift index d72b0a71..90d4595c 100644 --- a/Sources/ContainerCommands/Builder/BuilderStart.swift +++ b/Sources/ContainerCommands/Builder/BuilderStart.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Builder/BuilderStatus.swift b/Sources/ContainerCommands/Builder/BuilderStatus.swift index 7970de06..d2f4e733 100644 --- a/Sources/ContainerCommands/Builder/BuilderStatus.swift +++ b/Sources/ContainerCommands/Builder/BuilderStatus.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Builder/BuilderStop.swift b/Sources/ContainerCommands/Builder/BuilderStop.swift index 0a230e6f..ce6cf043 100644 --- a/Sources/ContainerCommands/Builder/BuilderStop.swift +++ b/Sources/ContainerCommands/Builder/BuilderStop.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Codable+JSON.swift b/Sources/ContainerCommands/Codable+JSON.swift index 52a65862..40fd3015 100644 --- a/Sources/ContainerCommands/Codable+JSON.swift +++ b/Sources/ContainerCommands/Codable+JSON.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerCreate.swift b/Sources/ContainerCommands/Container/ContainerCreate.swift index 4f2ac09a..7e1d2bd5 100644 --- a/Sources/ContainerCommands/Container/ContainerCreate.swift +++ b/Sources/ContainerCommands/Container/ContainerCreate.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerDelete.swift b/Sources/ContainerCommands/Container/ContainerDelete.swift index 8c262d68..22807d39 100644 --- a/Sources/ContainerCommands/Container/ContainerDelete.swift +++ b/Sources/ContainerCommands/Container/ContainerDelete.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerExec.swift b/Sources/ContainerCommands/Container/ContainerExec.swift index 2573dbbc..c8a7d3e3 100644 --- a/Sources/ContainerCommands/Container/ContainerExec.swift +++ b/Sources/ContainerCommands/Container/ContainerExec.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerInspect.swift b/Sources/ContainerCommands/Container/ContainerInspect.swift index 68c1bc68..7c8434b3 100644 --- a/Sources/ContainerCommands/Container/ContainerInspect.swift +++ b/Sources/ContainerCommands/Container/ContainerInspect.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerKill.swift b/Sources/ContainerCommands/Container/ContainerKill.swift index c6bc4079..c34c697e 100644 --- a/Sources/ContainerCommands/Container/ContainerKill.swift +++ b/Sources/ContainerCommands/Container/ContainerKill.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerList.swift b/Sources/ContainerCommands/Container/ContainerList.swift index d3cc9bb0..99d24569 100644 --- a/Sources/ContainerCommands/Container/ContainerList.swift +++ b/Sources/ContainerCommands/Container/ContainerList.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerLogs.swift b/Sources/ContainerCommands/Container/ContainerLogs.swift index 35f09755..9549c362 100644 --- a/Sources/ContainerCommands/Container/ContainerLogs.swift +++ b/Sources/ContainerCommands/Container/ContainerLogs.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerRun.swift b/Sources/ContainerCommands/Container/ContainerRun.swift index 790f8064..7a0b9fd8 100644 --- a/Sources/ContainerCommands/Container/ContainerRun.swift +++ b/Sources/ContainerCommands/Container/ContainerRun.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerStart.swift b/Sources/ContainerCommands/Container/ContainerStart.swift index cdef25a9..6273ec41 100644 --- a/Sources/ContainerCommands/Container/ContainerStart.swift +++ b/Sources/ContainerCommands/Container/ContainerStart.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerStats.swift b/Sources/ContainerCommands/Container/ContainerStats.swift index 651b156d..eaa55e61 100644 --- a/Sources/ContainerCommands/Container/ContainerStats.swift +++ b/Sources/ContainerCommands/Container/ContainerStats.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ContainerStop.swift b/Sources/ContainerCommands/Container/ContainerStop.swift index 09654656..548eb8aa 100644 --- a/Sources/ContainerCommands/Container/ContainerStop.swift +++ b/Sources/ContainerCommands/Container/ContainerStop.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Container/ProcessUtils.swift b/Sources/ContainerCommands/Container/ProcessUtils.swift index a2cb981d..3d8d7819 100644 --- a/Sources/ContainerCommands/Container/ProcessUtils.swift +++ b/Sources/ContainerCommands/Container/ProcessUtils.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/DefaultCommand.swift b/Sources/ContainerCommands/DefaultCommand.swift index 6ffc1143..7ea7a3f0 100644 --- a/Sources/ContainerCommands/DefaultCommand.swift +++ b/Sources/ContainerCommands/DefaultCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageCommand.swift b/Sources/ContainerCommands/Image/ImageCommand.swift index b1a9e0f1..ef866b74 100644 --- a/Sources/ContainerCommands/Image/ImageCommand.swift +++ b/Sources/ContainerCommands/Image/ImageCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageDelete.swift b/Sources/ContainerCommands/Image/ImageDelete.swift index ad62b11b..e0b87617 100644 --- a/Sources/ContainerCommands/Image/ImageDelete.swift +++ b/Sources/ContainerCommands/Image/ImageDelete.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageInspect.swift b/Sources/ContainerCommands/Image/ImageInspect.swift index 4ea5cfce..89fcd71c 100644 --- a/Sources/ContainerCommands/Image/ImageInspect.swift +++ b/Sources/ContainerCommands/Image/ImageInspect.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageList.swift b/Sources/ContainerCommands/Image/ImageList.swift index 4999d5f7..042d2823 100644 --- a/Sources/ContainerCommands/Image/ImageList.swift +++ b/Sources/ContainerCommands/Image/ImageList.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageLoad.swift b/Sources/ContainerCommands/Image/ImageLoad.swift index ff0f46c3..9f3b0c54 100644 --- a/Sources/ContainerCommands/Image/ImageLoad.swift +++ b/Sources/ContainerCommands/Image/ImageLoad.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImagePrune.swift b/Sources/ContainerCommands/Image/ImagePrune.swift index a0de4caf..4e8b189a 100644 --- a/Sources/ContainerCommands/Image/ImagePrune.swift +++ b/Sources/ContainerCommands/Image/ImagePrune.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImagePull.swift b/Sources/ContainerCommands/Image/ImagePull.swift index 55ca722d..65ffb7ee 100644 --- a/Sources/ContainerCommands/Image/ImagePull.swift +++ b/Sources/ContainerCommands/Image/ImagePull.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImagePush.swift b/Sources/ContainerCommands/Image/ImagePush.swift index 3bd57f71..aa08863e 100644 --- a/Sources/ContainerCommands/Image/ImagePush.swift +++ b/Sources/ContainerCommands/Image/ImagePush.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageSave.swift b/Sources/ContainerCommands/Image/ImageSave.swift index 0681bb85..a13692e4 100644 --- a/Sources/ContainerCommands/Image/ImageSave.swift +++ b/Sources/ContainerCommands/Image/ImageSave.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Image/ImageTag.swift b/Sources/ContainerCommands/Image/ImageTag.swift index 364d1a2e..0bd291e3 100644 --- a/Sources/ContainerCommands/Image/ImageTag.swift +++ b/Sources/ContainerCommands/Image/ImageTag.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Network/NetworkCommand.swift b/Sources/ContainerCommands/Network/NetworkCommand.swift index 574bfc36..9bbeee3d 100644 --- a/Sources/ContainerCommands/Network/NetworkCommand.swift +++ b/Sources/ContainerCommands/Network/NetworkCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Network/NetworkCreate.swift b/Sources/ContainerCommands/Network/NetworkCreate.swift index 6d557a0a..d4e79570 100644 --- a/Sources/ContainerCommands/Network/NetworkCreate.swift +++ b/Sources/ContainerCommands/Network/NetworkCreate.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Network/NetworkDelete.swift b/Sources/ContainerCommands/Network/NetworkDelete.swift index 35c57925..564b8269 100644 --- a/Sources/ContainerCommands/Network/NetworkDelete.swift +++ b/Sources/ContainerCommands/Network/NetworkDelete.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Network/NetworkInspect.swift b/Sources/ContainerCommands/Network/NetworkInspect.swift index bde6873e..eea42c56 100644 --- a/Sources/ContainerCommands/Network/NetworkInspect.swift +++ b/Sources/ContainerCommands/Network/NetworkInspect.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Network/NetworkList.swift b/Sources/ContainerCommands/Network/NetworkList.swift index 08122b76..1de28c26 100644 --- a/Sources/ContainerCommands/Network/NetworkList.swift +++ b/Sources/ContainerCommands/Network/NetworkList.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Network/NetworkPrune.swift b/Sources/ContainerCommands/Network/NetworkPrune.swift index ccbf1313..a6c97565 100644 --- a/Sources/ContainerCommands/Network/NetworkPrune.swift +++ b/Sources/ContainerCommands/Network/NetworkPrune.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Registry/Login.swift b/Sources/ContainerCommands/Registry/Login.swift index 687ee4cf..d19925c6 100644 --- a/Sources/ContainerCommands/Registry/Login.swift +++ b/Sources/ContainerCommands/Registry/Login.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Registry/Logout.swift b/Sources/ContainerCommands/Registry/Logout.swift index 95d1e93f..2c7743ff 100644 --- a/Sources/ContainerCommands/Registry/Logout.swift +++ b/Sources/ContainerCommands/Registry/Logout.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Registry/RegistryCommand.swift b/Sources/ContainerCommands/Registry/RegistryCommand.swift index edb20b48..b32cbb60 100644 --- a/Sources/ContainerCommands/Registry/RegistryCommand.swift +++ b/Sources/ContainerCommands/Registry/RegistryCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/DNS/DNSCreate.swift b/Sources/ContainerCommands/System/DNS/DNSCreate.swift index de8f9b98..2f24c1c6 100644 --- a/Sources/ContainerCommands/System/DNS/DNSCreate.swift +++ b/Sources/ContainerCommands/System/DNS/DNSCreate.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/DNS/DNSDelete.swift b/Sources/ContainerCommands/System/DNS/DNSDelete.swift index 0bed6b55..5fed7cba 100644 --- a/Sources/ContainerCommands/System/DNS/DNSDelete.swift +++ b/Sources/ContainerCommands/System/DNS/DNSDelete.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/DNS/DNSList.swift b/Sources/ContainerCommands/System/DNS/DNSList.swift index 9c236acc..3e103e17 100644 --- a/Sources/ContainerCommands/System/DNS/DNSList.swift +++ b/Sources/ContainerCommands/System/DNS/DNSList.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/Kernel/KernelSet.swift b/Sources/ContainerCommands/System/Kernel/KernelSet.swift index bdd66394..249c537d 100644 --- a/Sources/ContainerCommands/System/Kernel/KernelSet.swift +++ b/Sources/ContainerCommands/System/Kernel/KernelSet.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/Property/PropertyClear.swift b/Sources/ContainerCommands/System/Property/PropertyClear.swift index 7062933c..ef107f17 100644 --- a/Sources/ContainerCommands/System/Property/PropertyClear.swift +++ b/Sources/ContainerCommands/System/Property/PropertyClear.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/Property/PropertyGet.swift b/Sources/ContainerCommands/System/Property/PropertyGet.swift index 7d1651d1..5fafc064 100644 --- a/Sources/ContainerCommands/System/Property/PropertyGet.swift +++ b/Sources/ContainerCommands/System/Property/PropertyGet.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/Property/PropertyList.swift b/Sources/ContainerCommands/System/Property/PropertyList.swift index 35f7081b..9f79c169 100644 --- a/Sources/ContainerCommands/System/Property/PropertyList.swift +++ b/Sources/ContainerCommands/System/Property/PropertyList.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/Property/PropertySet.swift b/Sources/ContainerCommands/System/Property/PropertySet.swift index bcdc32a0..3ea50167 100644 --- a/Sources/ContainerCommands/System/Property/PropertySet.swift +++ b/Sources/ContainerCommands/System/Property/PropertySet.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemCommand.swift b/Sources/ContainerCommands/System/SystemCommand.swift index 6a4858fe..8869b4eb 100644 --- a/Sources/ContainerCommands/System/SystemCommand.swift +++ b/Sources/ContainerCommands/System/SystemCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemDF.swift b/Sources/ContainerCommands/System/SystemDF.swift index 79d81e7b..120c7521 100644 --- a/Sources/ContainerCommands/System/SystemDF.swift +++ b/Sources/ContainerCommands/System/SystemDF.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemDNS.swift b/Sources/ContainerCommands/System/SystemDNS.swift index b1cfb949..e7de8f2e 100644 --- a/Sources/ContainerCommands/System/SystemDNS.swift +++ b/Sources/ContainerCommands/System/SystemDNS.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemKernel.swift b/Sources/ContainerCommands/System/SystemKernel.swift index fac09e98..01c2df0c 100644 --- a/Sources/ContainerCommands/System/SystemKernel.swift +++ b/Sources/ContainerCommands/System/SystemKernel.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemLogs.swift b/Sources/ContainerCommands/System/SystemLogs.swift index 66e9a252..86a97440 100644 --- a/Sources/ContainerCommands/System/SystemLogs.swift +++ b/Sources/ContainerCommands/System/SystemLogs.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemProperty.swift b/Sources/ContainerCommands/System/SystemProperty.swift index 71b74191..9d86e90e 100644 --- a/Sources/ContainerCommands/System/SystemProperty.swift +++ b/Sources/ContainerCommands/System/SystemProperty.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemStart.swift b/Sources/ContainerCommands/System/SystemStart.swift index afd84870..fe0e91a8 100644 --- a/Sources/ContainerCommands/System/SystemStart.swift +++ b/Sources/ContainerCommands/System/SystemStart.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemStatus.swift b/Sources/ContainerCommands/System/SystemStatus.swift index d31d2092..f5ed65fb 100644 --- a/Sources/ContainerCommands/System/SystemStatus.swift +++ b/Sources/ContainerCommands/System/SystemStatus.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/SystemStop.swift b/Sources/ContainerCommands/System/SystemStop.swift index a6617c72..7e2765b9 100644 --- a/Sources/ContainerCommands/System/SystemStop.swift +++ b/Sources/ContainerCommands/System/SystemStop.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/System/Version.swift b/Sources/ContainerCommands/System/Version.swift index 5a05a1e2..78ad5a53 100644 --- a/Sources/ContainerCommands/System/Version.swift +++ b/Sources/ContainerCommands/System/Version.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Volume/VolumeCommand.swift b/Sources/ContainerCommands/Volume/VolumeCommand.swift index af01a65d..54f585de 100644 --- a/Sources/ContainerCommands/Volume/VolumeCommand.swift +++ b/Sources/ContainerCommands/Volume/VolumeCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Volume/VolumeCreate.swift b/Sources/ContainerCommands/Volume/VolumeCreate.swift index f939f339..8c0829bb 100644 --- a/Sources/ContainerCommands/Volume/VolumeCreate.swift +++ b/Sources/ContainerCommands/Volume/VolumeCreate.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Volume/VolumeDelete.swift b/Sources/ContainerCommands/Volume/VolumeDelete.swift index 14447f6e..efb6460b 100644 --- a/Sources/ContainerCommands/Volume/VolumeDelete.swift +++ b/Sources/ContainerCommands/Volume/VolumeDelete.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Volume/VolumeInspect.swift b/Sources/ContainerCommands/Volume/VolumeInspect.swift index 9a922f29..03baf7e7 100644 --- a/Sources/ContainerCommands/Volume/VolumeInspect.swift +++ b/Sources/ContainerCommands/Volume/VolumeInspect.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Volume/VolumeList.swift b/Sources/ContainerCommands/Volume/VolumeList.swift index 9f3aacf0..f4b2331b 100644 --- a/Sources/ContainerCommands/Volume/VolumeList.swift +++ b/Sources/ContainerCommands/Volume/VolumeList.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerCommands/Volume/VolumePrune.swift b/Sources/ContainerCommands/Volume/VolumePrune.swift index 8b22a825..07c4fc69 100644 --- a/Sources/ContainerCommands/Volume/VolumePrune.swift +++ b/Sources/ContainerCommands/Volume/VolumePrune.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerLog/OSLogHandler.swift b/Sources/ContainerLog/OSLogHandler.swift index 12508187..a9eb9a89 100644 --- a/Sources/ContainerLog/OSLogHandler.swift +++ b/Sources/ContainerLog/OSLogHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerLog/StderrLogHandler.swift b/Sources/ContainerLog/StderrLogHandler.swift index e50b346a..a87a71e4 100644 --- a/Sources/ContainerLog/StderrLogHandler.swift +++ b/Sources/ContainerLog/StderrLogHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPersistence/DefaultsStore.swift b/Sources/ContainerPersistence/DefaultsStore.swift index 3bddcb15..2725d17d 100644 --- a/Sources/ContainerPersistence/DefaultsStore.swift +++ b/Sources/ContainerPersistence/DefaultsStore.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPersistence/EntityStore.swift b/Sources/ContainerPersistence/EntityStore.swift index e12d34b1..fefdf8c2 100644 --- a/Sources/ContainerPersistence/EntityStore.swift +++ b/Sources/ContainerPersistence/EntityStore.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/ApplicationRoot.swift b/Sources/ContainerPlugin/ApplicationRoot.swift index dbe8d5f2..94db22c3 100644 --- a/Sources/ContainerPlugin/ApplicationRoot.swift +++ b/Sources/ContainerPlugin/ApplicationRoot.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/InstallRoot.swift b/Sources/ContainerPlugin/InstallRoot.swift index f0217b55..8f39c790 100644 --- a/Sources/ContainerPlugin/InstallRoot.swift +++ b/Sources/ContainerPlugin/InstallRoot.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/LaunchPlist.swift b/Sources/ContainerPlugin/LaunchPlist.swift index 32857f6e..ed996b46 100644 --- a/Sources/ContainerPlugin/LaunchPlist.swift +++ b/Sources/ContainerPlugin/LaunchPlist.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/Plugin.swift b/Sources/ContainerPlugin/Plugin.swift index 2d2571b5..2e969b53 100644 --- a/Sources/ContainerPlugin/Plugin.swift +++ b/Sources/ContainerPlugin/Plugin.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/PluginConfig.swift b/Sources/ContainerPlugin/PluginConfig.swift index c4efcfb1..5fdf2a99 100644 --- a/Sources/ContainerPlugin/PluginConfig.swift +++ b/Sources/ContainerPlugin/PluginConfig.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/PluginFactory.swift b/Sources/ContainerPlugin/PluginFactory.swift index 8d1eb701..2123a5ed 100644 --- a/Sources/ContainerPlugin/PluginFactory.swift +++ b/Sources/ContainerPlugin/PluginFactory.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/PluginLoader.swift b/Sources/ContainerPlugin/PluginLoader.swift index 3f76fed0..08a0293d 100644 --- a/Sources/ContainerPlugin/PluginLoader.swift +++ b/Sources/ContainerPlugin/PluginLoader.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerPlugin/ServiceManager.swift b/Sources/ContainerPlugin/ServiceManager.swift index 597a55f4..0b2d58a2 100644 --- a/Sources/ContainerPlugin/ServiceManager.swift +++ b/Sources/ContainerPlugin/ServiceManager.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerVersion/Bundle+AppBundle.swift b/Sources/ContainerVersion/Bundle+AppBundle.swift index 077e016c..5028897e 100644 --- a/Sources/ContainerVersion/Bundle+AppBundle.swift +++ b/Sources/ContainerVersion/Bundle+AppBundle.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerVersion/CommandLine+Executable.swift b/Sources/ContainerVersion/CommandLine+Executable.swift index 3051e74e..c48cbe57 100644 --- a/Sources/ContainerVersion/CommandLine+Executable.swift +++ b/Sources/ContainerVersion/CommandLine+Executable.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerVersion/ReleaseVersion.swift b/Sources/ContainerVersion/ReleaseVersion.swift index d42b55f5..4ae98d6a 100644 --- a/Sources/ContainerVersion/ReleaseVersion.swift +++ b/Sources/ContainerVersion/ReleaseVersion.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerXPC/XPCClient.swift b/Sources/ContainerXPC/XPCClient.swift index 72affece..9fd1891c 100644 --- a/Sources/ContainerXPC/XPCClient.swift +++ b/Sources/ContainerXPC/XPCClient.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerXPC/XPCMessage.swift b/Sources/ContainerXPC/XPCMessage.swift index d14658a8..18b3e98a 100644 --- a/Sources/ContainerXPC/XPCMessage.swift +++ b/Sources/ContainerXPC/XPCMessage.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/ContainerXPC/XPCServer.swift b/Sources/ContainerXPC/XPCServer.swift index 3a21a307..3dd6b557 100644 --- a/Sources/ContainerXPC/XPCServer.swift +++ b/Sources/ContainerXPC/XPCServer.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/DNSHandler.swift b/Sources/DNSServer/DNSHandler.swift index 594e6f27..4a5008c6 100644 --- a/Sources/DNSServer/DNSHandler.swift +++ b/Sources/DNSServer/DNSHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/DNSServer+Handle.swift b/Sources/DNSServer/DNSServer+Handle.swift index 2748f0d9..e258fb48 100644 --- a/Sources/DNSServer/DNSServer+Handle.swift +++ b/Sources/DNSServer/DNSServer+Handle.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/DNSServer.swift b/Sources/DNSServer/DNSServer.swift index 100a6a2e..d38e5545 100644 --- a/Sources/DNSServer/DNSServer.swift +++ b/Sources/DNSServer/DNSServer.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/Handlers/CompositeResolver.swift b/Sources/DNSServer/Handlers/CompositeResolver.swift index 32449484..e090ce1f 100644 --- a/Sources/DNSServer/Handlers/CompositeResolver.swift +++ b/Sources/DNSServer/Handlers/CompositeResolver.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/Handlers/HostTableResolver.swift b/Sources/DNSServer/Handlers/HostTableResolver.swift index 9806b5ca..0bc24760 100644 --- a/Sources/DNSServer/Handlers/HostTableResolver.swift +++ b/Sources/DNSServer/Handlers/HostTableResolver.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/Handlers/NxDomainResolver.swift b/Sources/DNSServer/Handlers/NxDomainResolver.swift index 1fe9de05..68b36bf1 100644 --- a/Sources/DNSServer/Handlers/NxDomainResolver.swift +++ b/Sources/DNSServer/Handlers/NxDomainResolver.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/Handlers/StandardQueryValidator.swift b/Sources/DNSServer/Handlers/StandardQueryValidator.swift index 600e56ac..fb0d74ae 100644 --- a/Sources/DNSServer/Handlers/StandardQueryValidator.swift +++ b/Sources/DNSServer/Handlers/StandardQueryValidator.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/DNSServer/Types.swift b/Sources/DNSServer/Types.swift index a9884237..60e5cd6e 100644 --- a/Sources/DNSServer/Types.swift +++ b/Sources/DNSServer/Types.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/APIServer/APIServer+Start.swift b/Sources/Helpers/APIServer/APIServer+Start.swift index 8bf36335..07b883dc 100644 --- a/Sources/Helpers/APIServer/APIServer+Start.swift +++ b/Sources/Helpers/APIServer/APIServer+Start.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/APIServer/APIServer.swift b/Sources/Helpers/APIServer/APIServer.swift index 16cd8501..2d83370e 100644 --- a/Sources/Helpers/APIServer/APIServer.swift +++ b/Sources/Helpers/APIServer/APIServer.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/APIServer/ContainerDNSHandler.swift b/Sources/Helpers/APIServer/ContainerDNSHandler.swift index 158096d8..53e80ca7 100644 --- a/Sources/Helpers/APIServer/ContainerDNSHandler.swift +++ b/Sources/Helpers/APIServer/ContainerDNSHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/Images/ImagesHelper.swift b/Sources/Helpers/Images/ImagesHelper.swift index d7383f4b..9a9be314 100644 --- a/Sources/Helpers/Images/ImagesHelper.swift +++ b/Sources/Helpers/Images/ImagesHelper.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper+Start.swift b/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper+Start.swift index edde525a..141e23e3 100644 --- a/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper+Start.swift +++ b/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper+Start.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper.swift b/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper.swift index 983c62cd..c924f063 100644 --- a/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper.swift +++ b/Sources/Helpers/NetworkVmnet/NetworkVmnetHelper.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/RuntimeLinux/IsolatedInterfaceStrategy.swift b/Sources/Helpers/RuntimeLinux/IsolatedInterfaceStrategy.swift index b013e526..20706043 100644 --- a/Sources/Helpers/RuntimeLinux/IsolatedInterfaceStrategy.swift +++ b/Sources/Helpers/RuntimeLinux/IsolatedInterfaceStrategy.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/RuntimeLinux/NonisolatedInterfaceStrategy.swift b/Sources/Helpers/RuntimeLinux/NonisolatedInterfaceStrategy.swift index 53381a63..287ebbdf 100644 --- a/Sources/Helpers/RuntimeLinux/NonisolatedInterfaceStrategy.swift +++ b/Sources/Helpers/RuntimeLinux/NonisolatedInterfaceStrategy.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper+Start.swift b/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper+Start.swift index c660ea47..fe081b23 100644 --- a/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper+Start.swift +++ b/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper+Start.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper.swift b/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper.swift index 6e407200..3d4e62d8 100644 --- a/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper.swift +++ b/Sources/Helpers/RuntimeLinux/RuntimeLinuxHelper.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Containers/ContainersHarness.swift b/Sources/Services/ContainerAPIService/Containers/ContainersHarness.swift index 0b1beec2..9a5bd148 100644 --- a/Sources/Services/ContainerAPIService/Containers/ContainersHarness.swift +++ b/Sources/Services/ContainerAPIService/Containers/ContainersHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageHarness.swift b/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageHarness.swift index ddcf5508..9f4985d8 100644 --- a/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageHarness.swift +++ b/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageService.swift b/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageService.swift index 312fe95e..4e0483fe 100644 --- a/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageService.swift +++ b/Sources/Services/ContainerAPIService/DiskUsage/DiskUsageService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/HealthCheck/HealthCheckHarness.swift b/Sources/Services/ContainerAPIService/HealthCheck/HealthCheckHarness.swift index 370391cf..b0018257 100644 --- a/Sources/Services/ContainerAPIService/HealthCheck/HealthCheckHarness.swift +++ b/Sources/Services/ContainerAPIService/HealthCheck/HealthCheckHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Kernel/KernelHarness.swift b/Sources/Services/ContainerAPIService/Kernel/KernelHarness.swift index 0f619736..a4c1c9f5 100644 --- a/Sources/Services/ContainerAPIService/Kernel/KernelHarness.swift +++ b/Sources/Services/ContainerAPIService/Kernel/KernelHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Kernel/KernelService.swift b/Sources/Services/ContainerAPIService/Kernel/KernelService.swift index 0ba4645e..bd1f23c1 100644 --- a/Sources/Services/ContainerAPIService/Kernel/KernelService.swift +++ b/Sources/Services/ContainerAPIService/Kernel/KernelService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Networks/NetworksHarness.swift b/Sources/Services/ContainerAPIService/Networks/NetworksHarness.swift index e3094dab..a2a7f0ae 100644 --- a/Sources/Services/ContainerAPIService/Networks/NetworksHarness.swift +++ b/Sources/Services/ContainerAPIService/Networks/NetworksHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Networks/NetworksService.swift b/Sources/Services/ContainerAPIService/Networks/NetworksService.swift index 78b8528e..e5ddd2b2 100644 --- a/Sources/Services/ContainerAPIService/Networks/NetworksService.swift +++ b/Sources/Services/ContainerAPIService/Networks/NetworksService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Plugin/PluginsHarness.swift b/Sources/Services/ContainerAPIService/Plugin/PluginsHarness.swift index 7e8725e7..93237921 100644 --- a/Sources/Services/ContainerAPIService/Plugin/PluginsHarness.swift +++ b/Sources/Services/ContainerAPIService/Plugin/PluginsHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Plugin/PluginsService.swift b/Sources/Services/ContainerAPIService/Plugin/PluginsService.swift index 1995a396..7f053eb0 100644 --- a/Sources/Services/ContainerAPIService/Plugin/PluginsService.swift +++ b/Sources/Services/ContainerAPIService/Plugin/PluginsService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Volumes/VolumesHarness.swift b/Sources/Services/ContainerAPIService/Volumes/VolumesHarness.swift index d694abab..b77a4600 100644 --- a/Sources/Services/ContainerAPIService/Volumes/VolumesHarness.swift +++ b/Sources/Services/ContainerAPIService/Volumes/VolumesHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerAPIService/Volumes/VolumesService.swift b/Sources/Services/ContainerAPIService/Volumes/VolumesService.swift index cddc991b..567013a9 100644 --- a/Sources/Services/ContainerAPIService/Volumes/VolumesService.swift +++ b/Sources/Services/ContainerAPIService/Volumes/VolumesService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Client/ImageServiceXPCKeys.swift b/Sources/Services/ContainerImagesService/Client/ImageServiceXPCKeys.swift index fcbed505..e541e6bb 100644 --- a/Sources/Services/ContainerImagesService/Client/ImageServiceXPCKeys.swift +++ b/Sources/Services/ContainerImagesService/Client/ImageServiceXPCKeys.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Client/ImageServiceXPCRoutes.swift b/Sources/Services/ContainerImagesService/Client/ImageServiceXPCRoutes.swift index f383e0d1..b53ed54c 100644 --- a/Sources/Services/ContainerImagesService/Client/ImageServiceXPCRoutes.swift +++ b/Sources/Services/ContainerImagesService/Client/ImageServiceXPCRoutes.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Client/RemoteContentStoreClient.swift b/Sources/Services/ContainerImagesService/Client/RemoteContentStoreClient.swift index 270ad114..9c92c4d0 100644 --- a/Sources/Services/ContainerImagesService/Client/RemoteContentStoreClient.swift +++ b/Sources/Services/ContainerImagesService/Client/RemoteContentStoreClient.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Server/ContentServiceHarness.swift b/Sources/Services/ContainerImagesService/Server/ContentServiceHarness.swift index 544659a8..f9a3ea37 100644 --- a/Sources/Services/ContainerImagesService/Server/ContentServiceHarness.swift +++ b/Sources/Services/ContainerImagesService/Server/ContentServiceHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Server/ContentStoreService.swift b/Sources/Services/ContainerImagesService/Server/ContentStoreService.swift index e8d6d4a6..1a6d1d1d 100644 --- a/Sources/Services/ContainerImagesService/Server/ContentStoreService.swift +++ b/Sources/Services/ContainerImagesService/Server/ContentStoreService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Server/ImageService.swift b/Sources/Services/ContainerImagesService/Server/ImageService.swift index f84e90cf..c3020902 100644 --- a/Sources/Services/ContainerImagesService/Server/ImageService.swift +++ b/Sources/Services/ContainerImagesService/Server/ImageService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Server/ImagesServiceHarness.swift b/Sources/Services/ContainerImagesService/Server/ImagesServiceHarness.swift index 966191b8..4cd13686 100644 --- a/Sources/Services/ContainerImagesService/Server/ImagesServiceHarness.swift +++ b/Sources/Services/ContainerImagesService/Server/ImagesServiceHarness.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerImagesService/Server/SnapshotStore.swift b/Sources/Services/ContainerImagesService/Server/SnapshotStore.swift index 20c8aa41..403456fe 100644 --- a/Sources/Services/ContainerImagesService/Server/SnapshotStore.swift +++ b/Sources/Services/ContainerImagesService/Server/SnapshotStore.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/AllocationOnlyVmnetNetwork.swift b/Sources/Services/ContainerNetworkService/AllocationOnlyVmnetNetwork.swift index befb1d0b..3c2d06d4 100644 --- a/Sources/Services/ContainerNetworkService/AllocationOnlyVmnetNetwork.swift +++ b/Sources/Services/ContainerNetworkService/AllocationOnlyVmnetNetwork.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/Attachment.swift b/Sources/Services/ContainerNetworkService/Attachment.swift index d76ec813..070df5f6 100644 --- a/Sources/Services/ContainerNetworkService/Attachment.swift +++ b/Sources/Services/ContainerNetworkService/Attachment.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/AttachmentAllocator.swift b/Sources/Services/ContainerNetworkService/AttachmentAllocator.swift index ede611b2..a95e8831 100644 --- a/Sources/Services/ContainerNetworkService/AttachmentAllocator.swift +++ b/Sources/Services/ContainerNetworkService/AttachmentAllocator.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/AttachmentConfiguration.swift b/Sources/Services/ContainerNetworkService/AttachmentConfiguration.swift index 7194856c..27fc8663 100644 --- a/Sources/Services/ContainerNetworkService/AttachmentConfiguration.swift +++ b/Sources/Services/ContainerNetworkService/AttachmentConfiguration.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/Network.swift b/Sources/Services/ContainerNetworkService/Network.swift index b6ebedfb..c0566b33 100644 --- a/Sources/Services/ContainerNetworkService/Network.swift +++ b/Sources/Services/ContainerNetworkService/Network.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkClient.swift b/Sources/Services/ContainerNetworkService/NetworkClient.swift index e579f3e0..d043dfe9 100644 --- a/Sources/Services/ContainerNetworkService/NetworkClient.swift +++ b/Sources/Services/ContainerNetworkService/NetworkClient.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkConfiguration.swift b/Sources/Services/ContainerNetworkService/NetworkConfiguration.swift index dae355d7..622f805b 100644 --- a/Sources/Services/ContainerNetworkService/NetworkConfiguration.swift +++ b/Sources/Services/ContainerNetworkService/NetworkConfiguration.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkKeys.swift b/Sources/Services/ContainerNetworkService/NetworkKeys.swift index 13def7ab..5bc33cae 100644 --- a/Sources/Services/ContainerNetworkService/NetworkKeys.swift +++ b/Sources/Services/ContainerNetworkService/NetworkKeys.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkMode.swift b/Sources/Services/ContainerNetworkService/NetworkMode.swift index 99d1eba1..483502b7 100644 --- a/Sources/Services/ContainerNetworkService/NetworkMode.swift +++ b/Sources/Services/ContainerNetworkService/NetworkMode.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkRoutes.swift b/Sources/Services/ContainerNetworkService/NetworkRoutes.swift index 877fbfb8..17ffc5dc 100644 --- a/Sources/Services/ContainerNetworkService/NetworkRoutes.swift +++ b/Sources/Services/ContainerNetworkService/NetworkRoutes.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkService.swift b/Sources/Services/ContainerNetworkService/NetworkService.swift index 52a4d3e3..b889d9c5 100644 --- a/Sources/Services/ContainerNetworkService/NetworkService.swift +++ b/Sources/Services/ContainerNetworkService/NetworkService.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/NetworkState.swift b/Sources/Services/ContainerNetworkService/NetworkState.swift index 4ee90544..354d6c09 100644 --- a/Sources/Services/ContainerNetworkService/NetworkState.swift +++ b/Sources/Services/ContainerNetworkService/NetworkState.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerNetworkService/ReservedVmnetNetwork.swift b/Sources/Services/ContainerNetworkService/ReservedVmnetNetwork.swift index 36b60072..ab5792e9 100644 --- a/Sources/Services/ContainerNetworkService/ReservedVmnetNetwork.swift +++ b/Sources/Services/ContainerNetworkService/ReservedVmnetNetwork.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/Services/ContainerSandboxService/InterfaceStrategy.swift b/Sources/Services/ContainerSandboxService/InterfaceStrategy.swift index 198c1fc0..b564d6f2 100644 --- a/Sources/Services/ContainerSandboxService/InterfaceStrategy.swift +++ b/Sources/Services/ContainerSandboxService/InterfaceStrategy.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/ConnectHandler.swift b/Sources/SocketForwarder/ConnectHandler.swift index 5954ec44..5f98e805 100644 --- a/Sources/SocketForwarder/ConnectHandler.swift +++ b/Sources/SocketForwarder/ConnectHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/GlueHandler.swift b/Sources/SocketForwarder/GlueHandler.swift index 59e3e169..c24d7bc8 100644 --- a/Sources/SocketForwarder/GlueHandler.swift +++ b/Sources/SocketForwarder/GlueHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/LRUCache.swift b/Sources/SocketForwarder/LRUCache.swift index 310b351c..82cb9f6d 100644 --- a/Sources/SocketForwarder/LRUCache.swift +++ b/Sources/SocketForwarder/LRUCache.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/SocketForwarder.swift b/Sources/SocketForwarder/SocketForwarder.swift index a63a0c9a..ac67497f 100644 --- a/Sources/SocketForwarder/SocketForwarder.swift +++ b/Sources/SocketForwarder/SocketForwarder.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/SocketForwarderResult.swift b/Sources/SocketForwarder/SocketForwarderResult.swift index 9247047a..c28b54d0 100644 --- a/Sources/SocketForwarder/SocketForwarderResult.swift +++ b/Sources/SocketForwarder/SocketForwarderResult.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/TCPForwarder.swift b/Sources/SocketForwarder/TCPForwarder.swift index f4b99bf5..e5103360 100644 --- a/Sources/SocketForwarder/TCPForwarder.swift +++ b/Sources/SocketForwarder/TCPForwarder.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/SocketForwarder/UDPForwarder.swift b/Sources/SocketForwarder/UDPForwarder.swift index b3c8252a..54d472e1 100644 --- a/Sources/SocketForwarder/UDPForwarder.swift +++ b/Sources/SocketForwarder/UDPForwarder.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/Int+Formatted.swift b/Sources/TerminalProgress/Int+Formatted.swift index 87ca58e9..f320b3ab 100644 --- a/Sources/TerminalProgress/Int+Formatted.swift +++ b/Sources/TerminalProgress/Int+Formatted.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/Int64+Formatted.swift b/Sources/TerminalProgress/Int64+Formatted.swift index e99f6389..4abc7a90 100644 --- a/Sources/TerminalProgress/Int64+Formatted.swift +++ b/Sources/TerminalProgress/Int64+Formatted.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressBar+Add.swift b/Sources/TerminalProgress/ProgressBar+Add.swift index 9c13d644..29c299b1 100644 --- a/Sources/TerminalProgress/ProgressBar+Add.swift +++ b/Sources/TerminalProgress/ProgressBar+Add.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressBar+State.swift b/Sources/TerminalProgress/ProgressBar+State.swift index baecbeab..a1500b76 100644 --- a/Sources/TerminalProgress/ProgressBar+State.swift +++ b/Sources/TerminalProgress/ProgressBar+State.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressBar+Terminal.swift b/Sources/TerminalProgress/ProgressBar+Terminal.swift index ab997fea..068e93a3 100644 --- a/Sources/TerminalProgress/ProgressBar+Terminal.swift +++ b/Sources/TerminalProgress/ProgressBar+Terminal.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressBar.swift b/Sources/TerminalProgress/ProgressBar.swift index 61dca8ae..a9435b81 100644 --- a/Sources/TerminalProgress/ProgressBar.swift +++ b/Sources/TerminalProgress/ProgressBar.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressConfig.swift b/Sources/TerminalProgress/ProgressConfig.swift index 37eb107a..5a2f836a 100644 --- a/Sources/TerminalProgress/ProgressConfig.swift +++ b/Sources/TerminalProgress/ProgressConfig.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressTaskCoordinator.swift b/Sources/TerminalProgress/ProgressTaskCoordinator.swift index 987e3c68..88cc73a7 100644 --- a/Sources/TerminalProgress/ProgressTaskCoordinator.swift +++ b/Sources/TerminalProgress/ProgressTaskCoordinator.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressTheme.swift b/Sources/TerminalProgress/ProgressTheme.swift index 273b668a..406b552f 100644 --- a/Sources/TerminalProgress/ProgressTheme.swift +++ b/Sources/TerminalProgress/ProgressTheme.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/ProgressUpdate.swift b/Sources/TerminalProgress/ProgressUpdate.swift index 136e7888..395dc7b9 100644 --- a/Sources/TerminalProgress/ProgressUpdate.swift +++ b/Sources/TerminalProgress/ProgressUpdate.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Sources/TerminalProgress/StandardError.swift b/Sources/TerminalProgress/StandardError.swift index 666e6123..c27b5a95 100644 --- a/Sources/TerminalProgress/StandardError.swift +++ b/Sources/TerminalProgress/StandardError.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIBuildBase.swift b/Tests/CLITests/Subcommands/Build/CLIBuildBase.swift index 3b1726c2..eb5ec30c 100644 --- a/Tests/CLITests/Subcommands/Build/CLIBuildBase.swift +++ b/Tests/CLITests/Subcommands/Build/CLIBuildBase.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIBuilderEnvOnlyTest.swift b/Tests/CLITests/Subcommands/Build/CLIBuilderEnvOnlyTest.swift index 952181b7..77d103af 100644 --- a/Tests/CLITests/Subcommands/Build/CLIBuilderEnvOnlyTest.swift +++ b/Tests/CLITests/Subcommands/Build/CLIBuilderEnvOnlyTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIBuilderLifecycleTest.swift b/Tests/CLITests/Subcommands/Build/CLIBuilderLifecycleTest.swift index 62d187e4..1f87ba99 100644 --- a/Tests/CLITests/Subcommands/Build/CLIBuilderLifecycleTest.swift +++ b/Tests/CLITests/Subcommands/Build/CLIBuilderLifecycleTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIBuilderLocalOutputTest.swift b/Tests/CLITests/Subcommands/Build/CLIBuilderLocalOutputTest.swift index 12bbb198..bf7b3795 100644 --- a/Tests/CLITests/Subcommands/Build/CLIBuilderLocalOutputTest.swift +++ b/Tests/CLITests/Subcommands/Build/CLIBuilderLocalOutputTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIBuilderTarExportTest.swift b/Tests/CLITests/Subcommands/Build/CLIBuilderTarExportTest.swift index 97c35b31..a47998fd 100644 --- a/Tests/CLITests/Subcommands/Build/CLIBuilderTarExportTest.swift +++ b/Tests/CLITests/Subcommands/Build/CLIBuilderTarExportTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIBuilderTest.swift b/Tests/CLITests/Subcommands/Build/CLIBuilderTest.swift index 37ecbec3..779ce3f1 100644 --- a/Tests/CLITests/Subcommands/Build/CLIBuilderTest.swift +++ b/Tests/CLITests/Subcommands/Build/CLIBuilderTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/CLIRunBase.swift b/Tests/CLITests/Subcommands/Build/CLIRunBase.swift index f794e516..f2e3f61b 100644 --- a/Tests/CLITests/Subcommands/Build/CLIRunBase.swift +++ b/Tests/CLITests/Subcommands/Build/CLIRunBase.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Build/TestCLITermIO.swift b/Tests/CLITests/Subcommands/Build/TestCLITermIO.swift index 21ec51e3..1cc844a6 100644 --- a/Tests/CLITests/Subcommands/Build/TestCLITermIO.swift +++ b/Tests/CLITests/Subcommands/Build/TestCLITermIO.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Containers/TestCLICreate.swift b/Tests/CLITests/Subcommands/Containers/TestCLICreate.swift index abee7a4a..6e6ea9be 100644 --- a/Tests/CLITests/Subcommands/Containers/TestCLICreate.swift +++ b/Tests/CLITests/Subcommands/Containers/TestCLICreate.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Containers/TestCLIExec.swift b/Tests/CLITests/Subcommands/Containers/TestCLIExec.swift index 17af30d7..e175f5df 100644 --- a/Tests/CLITests/Subcommands/Containers/TestCLIExec.swift +++ b/Tests/CLITests/Subcommands/Containers/TestCLIExec.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Containers/TestCLIRmRace.swift b/Tests/CLITests/Subcommands/Containers/TestCLIRmRace.swift index fbab21ff..b189c4d2 100644 --- a/Tests/CLITests/Subcommands/Containers/TestCLIRmRace.swift +++ b/Tests/CLITests/Subcommands/Containers/TestCLIRmRace.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Containers/TestCLIStats.swift b/Tests/CLITests/Subcommands/Containers/TestCLIStats.swift index 8c054fdc..e8dda270 100644 --- a/Tests/CLITests/Subcommands/Containers/TestCLIStats.swift +++ b/Tests/CLITests/Subcommands/Containers/TestCLIStats.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Images/TestCLIImagesCommand.swift b/Tests/CLITests/Subcommands/Images/TestCLIImagesCommand.swift index 5bcb4fbc..7187c49a 100644 --- a/Tests/CLITests/Subcommands/Images/TestCLIImagesCommand.swift +++ b/Tests/CLITests/Subcommands/Images/TestCLIImagesCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Networks/TestCLINetwork.swift b/Tests/CLITests/Subcommands/Networks/TestCLINetwork.swift index d01b6df4..c447e2c9 100644 --- a/Tests/CLITests/Subcommands/Networks/TestCLINetwork.swift +++ b/Tests/CLITests/Subcommands/Networks/TestCLINetwork.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Plugins/TestCLIPluginErrors.swift b/Tests/CLITests/Subcommands/Plugins/TestCLIPluginErrors.swift index 4d6694b5..901c15a6 100644 --- a/Tests/CLITests/Subcommands/Plugins/TestCLIPluginErrors.swift +++ b/Tests/CLITests/Subcommands/Plugins/TestCLIPluginErrors.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Run/TestCLIRunCommand.swift b/Tests/CLITests/Subcommands/Run/TestCLIRunCommand.swift index 13149fc4..ba627369 100644 --- a/Tests/CLITests/Subcommands/Run/TestCLIRunCommand.swift +++ b/Tests/CLITests/Subcommands/Run/TestCLIRunCommand.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Run/TestCLIRunLifecycle.swift b/Tests/CLITests/Subcommands/Run/TestCLIRunLifecycle.swift index 1a4128b3..7a5fc971 100644 --- a/Tests/CLITests/Subcommands/Run/TestCLIRunLifecycle.swift +++ b/Tests/CLITests/Subcommands/Run/TestCLIRunLifecycle.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/System/TestCLIVersion.swift b/Tests/CLITests/Subcommands/System/TestCLIVersion.swift index f427fb4a..e9592a9b 100644 --- a/Tests/CLITests/Subcommands/System/TestCLIVersion.swift +++ b/Tests/CLITests/Subcommands/System/TestCLIVersion.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/System/TestKernelSet.swift b/Tests/CLITests/Subcommands/System/TestKernelSet.swift index 522d0d9c..1c371c55 100644 --- a/Tests/CLITests/Subcommands/System/TestKernelSet.swift +++ b/Tests/CLITests/Subcommands/System/TestKernelSet.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Volumes/TestCLIAnonymousVolumes.swift b/Tests/CLITests/Subcommands/Volumes/TestCLIAnonymousVolumes.swift index 0c234335..68a3f18a 100644 --- a/Tests/CLITests/Subcommands/Volumes/TestCLIAnonymousVolumes.swift +++ b/Tests/CLITests/Subcommands/Volumes/TestCLIAnonymousVolumes.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Subcommands/Volumes/TestCLIVolumes.swift b/Tests/CLITests/Subcommands/Volumes/TestCLIVolumes.swift index 75deefce..30be7a8c 100644 --- a/Tests/CLITests/Subcommands/Volumes/TestCLIVolumes.swift +++ b/Tests/CLITests/Subcommands/Volumes/TestCLIVolumes.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/TestCLINoParallelCases.swift b/Tests/CLITests/TestCLINoParallelCases.swift index 50a95d9d..eb6e3091 100644 --- a/Tests/CLITests/TestCLINoParallelCases.swift +++ b/Tests/CLITests/TestCLINoParallelCases.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/CLITests/Utilities/CLITest.swift b/Tests/CLITests/Utilities/CLITest.swift index 47478c5c..1f2df183 100644 --- a/Tests/CLITests/Utilities/CLITest.swift +++ b/Tests/CLITests/Utilities/CLITest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerBuildTests/BuildFile.swift b/Tests/ContainerBuildTests/BuildFile.swift index 5f5f17ff..662b04e2 100644 --- a/Tests/ContainerBuildTests/BuildFile.swift +++ b/Tests/ContainerBuildTests/BuildFile.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerBuildTests/BuilderExtensionsTests.swift b/Tests/ContainerBuildTests/BuilderExtensionsTests.swift index c627bf70..05789d2a 100644 --- a/Tests/ContainerBuildTests/BuilderExtensionsTests.swift +++ b/Tests/ContainerBuildTests/BuilderExtensionsTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerBuildTests/GlobberTests.swift b/Tests/ContainerBuildTests/GlobberTests.swift index 36aca4eb..fff0fc2d 100644 --- a/Tests/ContainerBuildTests/GlobberTests.swift +++ b/Tests/ContainerBuildTests/GlobberTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerClientTests/DiskUsageTests.swift b/Tests/ContainerClientTests/DiskUsageTests.swift index ca445c12..9d9fefaf 100644 --- a/Tests/ContainerClientTests/DiskUsageTests.swift +++ b/Tests/ContainerClientTests/DiskUsageTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerClientTests/HostDNSResolverTest.swift b/Tests/ContainerClientTests/HostDNSResolverTest.swift index 2d6741fe..d5e57604 100644 --- a/Tests/ContainerClientTests/HostDNSResolverTest.swift +++ b/Tests/ContainerClientTests/HostDNSResolverTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerClientTests/Measurement+ParseTests.swift b/Tests/ContainerClientTests/Measurement+ParseTests.swift index 3066f095..9cde2c66 100644 --- a/Tests/ContainerClientTests/Measurement+ParseTests.swift +++ b/Tests/ContainerClientTests/Measurement+ParseTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerClientTests/RequestSchemeTests.swift b/Tests/ContainerClientTests/RequestSchemeTests.swift index d87ac882..cfdf3c50 100644 --- a/Tests/ContainerClientTests/RequestSchemeTests.swift +++ b/Tests/ContainerClientTests/RequestSchemeTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerClientTests/VolumeValidationTests.swift b/Tests/ContainerClientTests/VolumeValidationTests.swift index b666bae2..30c40ad2 100644 --- a/Tests/ContainerClientTests/VolumeValidationTests.swift +++ b/Tests/ContainerClientTests/VolumeValidationTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerNetworkServiceTests/NetworkConfigurationTest.swift b/Tests/ContainerNetworkServiceTests/NetworkConfigurationTest.swift index f6f241e1..f2003435 100644 --- a/Tests/ContainerNetworkServiceTests/NetworkConfigurationTest.swift +++ b/Tests/ContainerNetworkServiceTests/NetworkConfigurationTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerPluginTests/CommandLine+ExecutableTest.swift b/Tests/ContainerPluginTests/CommandLine+ExecutableTest.swift index 5e439bbc..d9e913c8 100644 --- a/Tests/ContainerPluginTests/CommandLine+ExecutableTest.swift +++ b/Tests/ContainerPluginTests/CommandLine+ExecutableTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerPluginTests/MockPluginFactory.swift b/Tests/ContainerPluginTests/MockPluginFactory.swift index 52cb655d..272af8fd 100644 --- a/Tests/ContainerPluginTests/MockPluginFactory.swift +++ b/Tests/ContainerPluginTests/MockPluginFactory.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerPluginTests/PluginConfigTest.swift b/Tests/ContainerPluginTests/PluginConfigTest.swift index 6210f269..b4b15092 100644 --- a/Tests/ContainerPluginTests/PluginConfigTest.swift +++ b/Tests/ContainerPluginTests/PluginConfigTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerPluginTests/PluginFactoryTest.swift b/Tests/ContainerPluginTests/PluginFactoryTest.swift index eb35c2e8..211b27fe 100644 --- a/Tests/ContainerPluginTests/PluginFactoryTest.swift +++ b/Tests/ContainerPluginTests/PluginFactoryTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerPluginTests/PluginLoaderTest.swift b/Tests/ContainerPluginTests/PluginLoaderTest.swift index b429f6fa..5c90af56 100644 --- a/Tests/ContainerPluginTests/PluginLoaderTest.swift +++ b/Tests/ContainerPluginTests/PluginLoaderTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/ContainerPluginTests/PluginTest.swift b/Tests/ContainerPluginTests/PluginTest.swift index a55561cb..a69775b7 100644 --- a/Tests/ContainerPluginTests/PluginTest.swift +++ b/Tests/ContainerPluginTests/PluginTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/DNSServerTests/CompositeResolverTest.swift b/Tests/DNSServerTests/CompositeResolverTest.swift index cc254e7e..227c6b99 100644 --- a/Tests/DNSServerTests/CompositeResolverTest.swift +++ b/Tests/DNSServerTests/CompositeResolverTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/DNSServerTests/HostTableResolverTest.swift b/Tests/DNSServerTests/HostTableResolverTest.swift index b0f77f9a..1a7aff2c 100644 --- a/Tests/DNSServerTests/HostTableResolverTest.swift +++ b/Tests/DNSServerTests/HostTableResolverTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/DNSServerTests/MockHandlers.swift b/Tests/DNSServerTests/MockHandlers.swift index ba558227..6496c7e0 100644 --- a/Tests/DNSServerTests/MockHandlers.swift +++ b/Tests/DNSServerTests/MockHandlers.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/DNSServerTests/NxDomainResolverTest.swift b/Tests/DNSServerTests/NxDomainResolverTest.swift index c1dfc078..db592e56 100644 --- a/Tests/DNSServerTests/NxDomainResolverTest.swift +++ b/Tests/DNSServerTests/NxDomainResolverTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/DNSServerTests/StandardQueryValidatorTest.swift b/Tests/DNSServerTests/StandardQueryValidatorTest.swift index 5798fa49..185b00b4 100644 --- a/Tests/DNSServerTests/StandardQueryValidatorTest.swift +++ b/Tests/DNSServerTests/StandardQueryValidatorTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/ConnectHandlerRaceTest.swift b/Tests/SocketForwarderTests/ConnectHandlerRaceTest.swift index 1a1c314d..1d1e3228 100644 --- a/Tests/SocketForwarderTests/ConnectHandlerRaceTest.swift +++ b/Tests/SocketForwarderTests/ConnectHandlerRaceTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/LRUCacheTest.swift b/Tests/SocketForwarderTests/LRUCacheTest.swift index 247d3479..3603d81f 100644 --- a/Tests/SocketForwarderTests/LRUCacheTest.swift +++ b/Tests/SocketForwarderTests/LRUCacheTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/TCPEchoHandler.swift b/Tests/SocketForwarderTests/TCPEchoHandler.swift index 19a73449..9e44ec23 100644 --- a/Tests/SocketForwarderTests/TCPEchoHandler.swift +++ b/Tests/SocketForwarderTests/TCPEchoHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/TCPEchoServer.swift b/Tests/SocketForwarderTests/TCPEchoServer.swift index dc0dc246..81d63a26 100644 --- a/Tests/SocketForwarderTests/TCPEchoServer.swift +++ b/Tests/SocketForwarderTests/TCPEchoServer.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/TCPForwarderTest.swift b/Tests/SocketForwarderTests/TCPForwarderTest.swift index 9b16803a..d79b6570 100644 --- a/Tests/SocketForwarderTests/TCPForwarderTest.swift +++ b/Tests/SocketForwarderTests/TCPForwarderTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/UDPEchoHandler.swift b/Tests/SocketForwarderTests/UDPEchoHandler.swift index 3da45a0d..c0f6ed15 100644 --- a/Tests/SocketForwarderTests/UDPEchoHandler.swift +++ b/Tests/SocketForwarderTests/UDPEchoHandler.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/UDPEchoServer.swift b/Tests/SocketForwarderTests/UDPEchoServer.swift index a5b20cb1..48b085ea 100644 --- a/Tests/SocketForwarderTests/UDPEchoServer.swift +++ b/Tests/SocketForwarderTests/UDPEchoServer.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/SocketForwarderTests/UDPForwarderTest.swift b/Tests/SocketForwarderTests/UDPForwarderTest.swift index aeaf9f5f..7ace2429 100644 --- a/Tests/SocketForwarderTests/UDPForwarderTest.swift +++ b/Tests/SocketForwarderTests/UDPForwarderTest.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/Tests/TerminalProgressTests/ProgressBarTests.swift b/Tests/TerminalProgressTests/ProgressBarTests.swift index ee98c174..7232abf8 100644 --- a/Tests/TerminalProgressTests/ProgressBarTests.swift +++ b/Tests/TerminalProgressTests/ProgressBarTests.swift @@ -1,5 +1,5 @@ //===----------------------------------------------------------------------===// -// Copyright © 2025 Apple Inc. and the container project authors. +// Copyright © 2025-2026 Apple Inc. and the container project 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/scripts/ensure-container-stopped.sh b/scripts/ensure-container-stopped.sh index 373f3b03..c83e8ead 100755 --- a/scripts/ensure-container-stopped.sh +++ b/scripts/ensure-container-stopped.sh @@ -1,5 +1,5 @@ #! /bin/bash -f -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/scripts/ensure-hawkeye-exists.sh b/scripts/ensure-hawkeye-exists.sh index 1de7557a..56d7986b 100755 --- a/scripts/ensure-hawkeye-exists.sh +++ b/scripts/ensure-hawkeye-exists.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/scripts/install-hawkeye.sh b/scripts/install-hawkeye.sh index eca87976..f6e7c467 100755 --- a/scripts/install-hawkeye.sh +++ b/scripts/install-hawkeye.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/scripts/install-init.sh b/scripts/install-init.sh index 716cbf78..26e120d9 100755 --- a/scripts/install-init.sh +++ b/scripts/install-init.sh @@ -1,5 +1,5 @@ #! /bin/bash -e -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/scripts/make-docs.sh b/scripts/make-docs.sh index c8443755..ccd47f2f 100755 --- a/scripts/make-docs.sh +++ b/scripts/make-docs.sh @@ -1,5 +1,5 @@ #! /bin/bash -e -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project 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/scripts/uninstall-container.sh b/scripts/uninstall-container.sh index 09553f01..aaa55004 100755 --- a/scripts/uninstall-container.sh +++ b/scripts/uninstall-container.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright © 2025 Apple Inc. and the container project authors. +# Copyright © 2025-2026 Apple Inc. and the container project authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.