From f29ff7e1b6e95006354b7138e902438dafd9f725 Mon Sep 17 00:00:00 2001 From: Christopher Fuller Date: Tue, 23 Jan 2024 12:53:05 -0800 Subject: [PATCH] Set copyright year (#307) --- LICENSE | 2 +- Plugins/SwiftLintPlugin/SwiftLintPlugin.swift | 2 +- Sources/Layout/Attributes/CanonicalEdge.swift | 2 +- Sources/Layout/Attributes/DirectionalEdge.swift | 2 +- Sources/Layout/Attributes/LayoutDirection.swift | 2 +- Sources/Layout/Attributes/XAxisAttribute.swift | 2 +- Sources/Layout/Attributes/YAxisAttribute.swift | 2 +- Sources/Layout/Builders/ConstraintsBuilder.swift | 2 +- Sources/Layout/Builders/LayoutBuilder.swift | 2 +- Sources/Layout/Layout.swift | 2 +- Sources/Layout/LayoutItem.swift | 2 +- Sources/Layout/LayoutItem/LayoutBaseline.swift | 2 +- Sources/Layout/LayoutItem/LayoutBoundary.swift | 2 +- Sources/Layout/LayoutItem/LayoutCenter.swift | 2 +- Sources/Layout/LayoutItem/LayoutItems/UIView+LayoutItem.swift | 2 +- Sources/Layout/LayoutItem/LayoutItems/ViewLayoutItem.swift | 2 +- Sources/Layout/LayoutItem/LayoutSize.swift | 2 +- Sources/Layout/Swift/Array.swift | 2 +- Sources/Layout/Swift/Collection.swift | 2 +- Sources/Layout/UIKit/NSDirectionalEdgeInsets.swift | 2 +- Sources/Layout/UIKit/NSLayoutConstraint-Attribute.swift | 2 +- Sources/Layout/UIKit/NSLayoutConstraint-Axis.swift | 2 +- Sources/Layout/UIKit/NSLayoutConstraint.swift | 2 +- Sources/Layout/UIKit/NSLayoutDimension.swift | 2 +- Sources/Layout/UIKit/NSLayoutXAxisAnchor.swift | 2 +- Sources/Layout/UIKit/NSLayoutYAxisAnchor.swift | 2 +- Sources/Layout/UIKit/UIEdgeInsets.swift | 2 +- Sources/Layout/UIKit/UILayoutGuide.swift | 2 +- Sources/Layout/UIKit/UILayoutPriority.swift | 2 +- Sources/Layout/UIKit/UILayoutSupport.swift | 2 +- Sources/Layout/UIKit/UIView+AutoLayout.swift | 2 +- Sources/Layout/UIKit/UIView+Frames.swift | 2 +- Sources/Layout/UIKit/UIView+Layout.swift | 2 +- Sources/Layout/UIKit/UIView+NSLayoutAnchor.swift | 2 +- Sources/Layout/UIKit/UIView-AutoresizingMask.swift | 2 +- Sources/Layout/UIKit/UIViewController.swift | 2 +- Tests/LayoutTests/Attributes/CanonicalEdgeTests.swift | 2 +- Tests/LayoutTests/Attributes/DirectionalEdgeTests.swift | 2 +- Tests/LayoutTests/Attributes/LayoutDirectionTests.swift | 2 +- Tests/LayoutTests/Builders/ConstraintsBuilderTests.swift | 2 +- Tests/LayoutTests/Builders/LayoutBuilderTests.swift | 2 +- .../LayoutItem/LayoutItems/UIView+LayoutItemTests.swift | 2 +- .../LayoutItem/LayoutItems/ViewLayoutItemTests.swift | 2 +- Tests/LayoutTests/LayoutItemTests.swift | 2 +- Tests/LayoutTests/LayoutTests.swift | 2 +- Tests/LayoutTests/Support/Array.swift | 2 +- Tests/LayoutTests/Support/Device.swift | 2 +- Tests/LayoutTests/Support/NimbleMatchers.swift | 2 +- Tests/LayoutTests/Support/SnapshotTesting.swift | 2 +- Tests/LayoutTests/Support/View.swift | 2 +- Tests/LayoutTests/Swift/ArrayTests.swift | 2 +- Tests/LayoutTests/Swift/CollectionTests.swift | 2 +- Tests/LayoutTests/UIKit/NSDirectionalEdgeInsetsTests.swift | 2 +- Tests/LayoutTests/UIKit/NSLayoutConstraint-AttributeTests.swift | 2 +- Tests/LayoutTests/UIKit/NSLayoutConstraint-AxisTests.swift | 2 +- Tests/LayoutTests/UIKit/NSLayoutConstraintTests.swift | 2 +- Tests/LayoutTests/UIKit/NSLayoutDimensionTests.swift | 2 +- Tests/LayoutTests/UIKit/NSLayoutXAxisAnchorTests.swift | 2 +- Tests/LayoutTests/UIKit/NSLayoutYAxisAnchorTests.swift | 2 +- Tests/LayoutTests/UIKit/UIEdgeInsetsTests.swift | 2 +- Tests/LayoutTests/UIKit/UILayoutGuideTests.swift | 2 +- Tests/LayoutTests/UIKit/UILayoutPriorityTests.swift | 2 +- Tests/LayoutTests/UIKit/UILayoutSupportTests.swift | 2 +- Tests/LayoutTests/UIKit/UIView+AutoLayoutTests.swift | 2 +- Tests/LayoutTests/UIKit/UIView+FramesTests.swift | 2 +- Tests/LayoutTests/UIKit/UIView+LayoutTests.swift | 2 +- Tests/LayoutTests/UIKit/UIView+NSLayoutAnchorTests.swift | 2 +- Tests/LayoutTests/UIKit/UIView-AutoresizingMaskTests.swift | 2 +- Tests/LayoutTests/UIKit/UIViewControllerTests.swift | 2 +- 69 files changed, 69 insertions(+), 69 deletions(-) diff --git a/LICENSE b/LICENSE index 0f12d947..0b9eadf4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ Modified 3-Clause BSD License -Copyright © 2023 Match Group, LLC +Copyright © 2024 Match Group, LLC This license is based on the 3-Clause BSD license, modified for clarity and to add the following requirements: Modifications must diff --git a/Plugins/SwiftLintPlugin/SwiftLintPlugin.swift b/Plugins/SwiftLintPlugin/SwiftLintPlugin.swift index 4ef235c9..5d8f8ec0 100644 --- a/Plugins/SwiftLintPlugin/SwiftLintPlugin.swift +++ b/Plugins/SwiftLintPlugin/SwiftLintPlugin.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Attributes/CanonicalEdge.swift b/Sources/Layout/Attributes/CanonicalEdge.swift index c5a6b3b3..d98b9e38 100644 --- a/Sources/Layout/Attributes/CanonicalEdge.swift +++ b/Sources/Layout/Attributes/CanonicalEdge.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Attributes/DirectionalEdge.swift b/Sources/Layout/Attributes/DirectionalEdge.swift index 2a267385..90b187dc 100644 --- a/Sources/Layout/Attributes/DirectionalEdge.swift +++ b/Sources/Layout/Attributes/DirectionalEdge.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Attributes/LayoutDirection.swift b/Sources/Layout/Attributes/LayoutDirection.swift index 3ddc3cab..7ee2a274 100644 --- a/Sources/Layout/Attributes/LayoutDirection.swift +++ b/Sources/Layout/Attributes/LayoutDirection.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Attributes/XAxisAttribute.swift b/Sources/Layout/Attributes/XAxisAttribute.swift index f8b0a9fe..95fba3b0 100644 --- a/Sources/Layout/Attributes/XAxisAttribute.swift +++ b/Sources/Layout/Attributes/XAxisAttribute.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Attributes/YAxisAttribute.swift b/Sources/Layout/Attributes/YAxisAttribute.swift index 07c890d6..654d30a9 100644 --- a/Sources/Layout/Attributes/YAxisAttribute.swift +++ b/Sources/Layout/Attributes/YAxisAttribute.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Builders/ConstraintsBuilder.swift b/Sources/Layout/Builders/ConstraintsBuilder.swift index 74215b88..faf58430 100644 --- a/Sources/Layout/Builders/ConstraintsBuilder.swift +++ b/Sources/Layout/Builders/ConstraintsBuilder.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Builders/LayoutBuilder.swift b/Sources/Layout/Builders/LayoutBuilder.swift index 50a3bc6e..d28aa581 100644 --- a/Sources/Layout/Builders/LayoutBuilder.swift +++ b/Sources/Layout/Builders/LayoutBuilder.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Layout.swift b/Sources/Layout/Layout.swift index ce0f0e2f..e9372417 100644 --- a/Sources/Layout/Layout.swift +++ b/Sources/Layout/Layout.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem.swift b/Sources/Layout/LayoutItem.swift index b6939de5..6dcdc4e0 100644 --- a/Sources/Layout/LayoutItem.swift +++ b/Sources/Layout/LayoutItem.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem/LayoutBaseline.swift b/Sources/Layout/LayoutItem/LayoutBaseline.swift index 0cfcb65e..e5465eee 100644 --- a/Sources/Layout/LayoutItem/LayoutBaseline.swift +++ b/Sources/Layout/LayoutItem/LayoutBaseline.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem/LayoutBoundary.swift b/Sources/Layout/LayoutItem/LayoutBoundary.swift index a73d5f45..3f6b55e5 100644 --- a/Sources/Layout/LayoutItem/LayoutBoundary.swift +++ b/Sources/Layout/LayoutItem/LayoutBoundary.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem/LayoutCenter.swift b/Sources/Layout/LayoutItem/LayoutCenter.swift index d54d42c9..b0231d27 100644 --- a/Sources/Layout/LayoutItem/LayoutCenter.swift +++ b/Sources/Layout/LayoutItem/LayoutCenter.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem/LayoutItems/UIView+LayoutItem.swift b/Sources/Layout/LayoutItem/LayoutItems/UIView+LayoutItem.swift index ee427785..62ef69ac 100644 --- a/Sources/Layout/LayoutItem/LayoutItems/UIView+LayoutItem.swift +++ b/Sources/Layout/LayoutItem/LayoutItems/UIView+LayoutItem.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem/LayoutItems/ViewLayoutItem.swift b/Sources/Layout/LayoutItem/LayoutItems/ViewLayoutItem.swift index 0c0d7cb7..fc0f2248 100644 --- a/Sources/Layout/LayoutItem/LayoutItems/ViewLayoutItem.swift +++ b/Sources/Layout/LayoutItem/LayoutItems/ViewLayoutItem.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/LayoutItem/LayoutSize.swift b/Sources/Layout/LayoutItem/LayoutSize.swift index 96a14994..123da9a2 100644 --- a/Sources/Layout/LayoutItem/LayoutSize.swift +++ b/Sources/Layout/LayoutItem/LayoutSize.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Swift/Array.swift b/Sources/Layout/Swift/Array.swift index fd4a59a0..e73e43e3 100644 --- a/Sources/Layout/Swift/Array.swift +++ b/Sources/Layout/Swift/Array.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/Swift/Collection.swift b/Sources/Layout/Swift/Collection.swift index 6c19c174..ce88da86 100644 --- a/Sources/Layout/Swift/Collection.swift +++ b/Sources/Layout/Swift/Collection.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSDirectionalEdgeInsets.swift b/Sources/Layout/UIKit/NSDirectionalEdgeInsets.swift index 81ef714b..f5fec0ab 100644 --- a/Sources/Layout/UIKit/NSDirectionalEdgeInsets.swift +++ b/Sources/Layout/UIKit/NSDirectionalEdgeInsets.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSLayoutConstraint-Attribute.swift b/Sources/Layout/UIKit/NSLayoutConstraint-Attribute.swift index a809eb19..8b65e507 100644 --- a/Sources/Layout/UIKit/NSLayoutConstraint-Attribute.swift +++ b/Sources/Layout/UIKit/NSLayoutConstraint-Attribute.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSLayoutConstraint-Axis.swift b/Sources/Layout/UIKit/NSLayoutConstraint-Axis.swift index fe4ac008..dfbe1978 100644 --- a/Sources/Layout/UIKit/NSLayoutConstraint-Axis.swift +++ b/Sources/Layout/UIKit/NSLayoutConstraint-Axis.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSLayoutConstraint.swift b/Sources/Layout/UIKit/NSLayoutConstraint.swift index 7540b2df..5be9a997 100644 --- a/Sources/Layout/UIKit/NSLayoutConstraint.swift +++ b/Sources/Layout/UIKit/NSLayoutConstraint.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSLayoutDimension.swift b/Sources/Layout/UIKit/NSLayoutDimension.swift index ff32e429..86a3fc78 100644 --- a/Sources/Layout/UIKit/NSLayoutDimension.swift +++ b/Sources/Layout/UIKit/NSLayoutDimension.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSLayoutXAxisAnchor.swift b/Sources/Layout/UIKit/NSLayoutXAxisAnchor.swift index 0e42c6ab..8c364eb7 100644 --- a/Sources/Layout/UIKit/NSLayoutXAxisAnchor.swift +++ b/Sources/Layout/UIKit/NSLayoutXAxisAnchor.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/NSLayoutYAxisAnchor.swift b/Sources/Layout/UIKit/NSLayoutYAxisAnchor.swift index 2e0b1a5e..f5ee6e8c 100644 --- a/Sources/Layout/UIKit/NSLayoutYAxisAnchor.swift +++ b/Sources/Layout/UIKit/NSLayoutYAxisAnchor.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIEdgeInsets.swift b/Sources/Layout/UIKit/UIEdgeInsets.swift index f0b6a104..e18b29f4 100644 --- a/Sources/Layout/UIKit/UIEdgeInsets.swift +++ b/Sources/Layout/UIKit/UIEdgeInsets.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UILayoutGuide.swift b/Sources/Layout/UIKit/UILayoutGuide.swift index 9adc6f10..b8738840 100644 --- a/Sources/Layout/UIKit/UILayoutGuide.swift +++ b/Sources/Layout/UIKit/UILayoutGuide.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UILayoutPriority.swift b/Sources/Layout/UIKit/UILayoutPriority.swift index 349a8112..8cee4dcf 100644 --- a/Sources/Layout/UIKit/UILayoutPriority.swift +++ b/Sources/Layout/UIKit/UILayoutPriority.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UILayoutSupport.swift b/Sources/Layout/UIKit/UILayoutSupport.swift index 7443e2bf..b1a20472 100644 --- a/Sources/Layout/UIKit/UILayoutSupport.swift +++ b/Sources/Layout/UIKit/UILayoutSupport.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIView+AutoLayout.swift b/Sources/Layout/UIKit/UIView+AutoLayout.swift index c34148cb..55ba2e1e 100644 --- a/Sources/Layout/UIKit/UIView+AutoLayout.swift +++ b/Sources/Layout/UIKit/UIView+AutoLayout.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIView+Frames.swift b/Sources/Layout/UIKit/UIView+Frames.swift index 3bda8bc5..46419fd7 100644 --- a/Sources/Layout/UIKit/UIView+Frames.swift +++ b/Sources/Layout/UIKit/UIView+Frames.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIView+Layout.swift b/Sources/Layout/UIKit/UIView+Layout.swift index 220bf6c6..69346296 100644 --- a/Sources/Layout/UIKit/UIView+Layout.swift +++ b/Sources/Layout/UIKit/UIView+Layout.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIView+NSLayoutAnchor.swift b/Sources/Layout/UIKit/UIView+NSLayoutAnchor.swift index f309b3d7..778edeb9 100644 --- a/Sources/Layout/UIKit/UIView+NSLayoutAnchor.swift +++ b/Sources/Layout/UIKit/UIView+NSLayoutAnchor.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIView-AutoresizingMask.swift b/Sources/Layout/UIKit/UIView-AutoresizingMask.swift index 312f7c99..63baf082 100644 --- a/Sources/Layout/UIKit/UIView-AutoresizingMask.swift +++ b/Sources/Layout/UIKit/UIView-AutoresizingMask.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Sources/Layout/UIKit/UIViewController.swift b/Sources/Layout/UIKit/UIViewController.swift index c62bc27c..4174d06a 100644 --- a/Sources/Layout/UIKit/UIViewController.swift +++ b/Sources/Layout/UIKit/UIViewController.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Attributes/CanonicalEdgeTests.swift b/Tests/LayoutTests/Attributes/CanonicalEdgeTests.swift index 18c94dd4..c450d5b4 100644 --- a/Tests/LayoutTests/Attributes/CanonicalEdgeTests.swift +++ b/Tests/LayoutTests/Attributes/CanonicalEdgeTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Attributes/DirectionalEdgeTests.swift b/Tests/LayoutTests/Attributes/DirectionalEdgeTests.swift index 88b7e255..5ef0b6f9 100644 --- a/Tests/LayoutTests/Attributes/DirectionalEdgeTests.swift +++ b/Tests/LayoutTests/Attributes/DirectionalEdgeTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Attributes/LayoutDirectionTests.swift b/Tests/LayoutTests/Attributes/LayoutDirectionTests.swift index 4edca064..298cf18e 100644 --- a/Tests/LayoutTests/Attributes/LayoutDirectionTests.swift +++ b/Tests/LayoutTests/Attributes/LayoutDirectionTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Builders/ConstraintsBuilderTests.swift b/Tests/LayoutTests/Builders/ConstraintsBuilderTests.swift index d248c137..c3c6af96 100644 --- a/Tests/LayoutTests/Builders/ConstraintsBuilderTests.swift +++ b/Tests/LayoutTests/Builders/ConstraintsBuilderTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Builders/LayoutBuilderTests.swift b/Tests/LayoutTests/Builders/LayoutBuilderTests.swift index 88ebadd7..e52624a6 100644 --- a/Tests/LayoutTests/Builders/LayoutBuilderTests.swift +++ b/Tests/LayoutTests/Builders/LayoutBuilderTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/LayoutItem/LayoutItems/UIView+LayoutItemTests.swift b/Tests/LayoutTests/LayoutItem/LayoutItems/UIView+LayoutItemTests.swift index 1b7080c7..b0316787 100644 --- a/Tests/LayoutTests/LayoutItem/LayoutItems/UIView+LayoutItemTests.swift +++ b/Tests/LayoutTests/LayoutItem/LayoutItems/UIView+LayoutItemTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/LayoutItem/LayoutItems/ViewLayoutItemTests.swift b/Tests/LayoutTests/LayoutItem/LayoutItems/ViewLayoutItemTests.swift index a669e94d..3debf539 100644 --- a/Tests/LayoutTests/LayoutItem/LayoutItems/ViewLayoutItemTests.swift +++ b/Tests/LayoutTests/LayoutItem/LayoutItems/ViewLayoutItemTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/LayoutItemTests.swift b/Tests/LayoutTests/LayoutItemTests.swift index 5546f4bc..bd79aa5b 100644 --- a/Tests/LayoutTests/LayoutItemTests.swift +++ b/Tests/LayoutTests/LayoutItemTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/LayoutTests.swift b/Tests/LayoutTests/LayoutTests.swift index e84975bf..d936dd47 100644 --- a/Tests/LayoutTests/LayoutTests.swift +++ b/Tests/LayoutTests/LayoutTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Support/Array.swift b/Tests/LayoutTests/Support/Array.swift index 4343270b..7c970a08 100644 --- a/Tests/LayoutTests/Support/Array.swift +++ b/Tests/LayoutTests/Support/Array.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Support/Device.swift b/Tests/LayoutTests/Support/Device.swift index 6145ab87..595bd52d 100644 --- a/Tests/LayoutTests/Support/Device.swift +++ b/Tests/LayoutTests/Support/Device.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Support/NimbleMatchers.swift b/Tests/LayoutTests/Support/NimbleMatchers.swift index 4c83aa96..198a51ed 100644 --- a/Tests/LayoutTests/Support/NimbleMatchers.swift +++ b/Tests/LayoutTests/Support/NimbleMatchers.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Support/SnapshotTesting.swift b/Tests/LayoutTests/Support/SnapshotTesting.swift index 39967a86..3942767b 100644 --- a/Tests/LayoutTests/Support/SnapshotTesting.swift +++ b/Tests/LayoutTests/Support/SnapshotTesting.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Support/View.swift b/Tests/LayoutTests/Support/View.swift index 74ff791b..8200ba24 100644 --- a/Tests/LayoutTests/Support/View.swift +++ b/Tests/LayoutTests/Support/View.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Swift/ArrayTests.swift b/Tests/LayoutTests/Swift/ArrayTests.swift index 2c2923f4..e0e5e676 100644 --- a/Tests/LayoutTests/Swift/ArrayTests.swift +++ b/Tests/LayoutTests/Swift/ArrayTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/Swift/CollectionTests.swift b/Tests/LayoutTests/Swift/CollectionTests.swift index f2c26160..a31a0496 100644 --- a/Tests/LayoutTests/Swift/CollectionTests.swift +++ b/Tests/LayoutTests/Swift/CollectionTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSDirectionalEdgeInsetsTests.swift b/Tests/LayoutTests/UIKit/NSDirectionalEdgeInsetsTests.swift index 5aed3fc3..f4ed9aec 100644 --- a/Tests/LayoutTests/UIKit/NSDirectionalEdgeInsetsTests.swift +++ b/Tests/LayoutTests/UIKit/NSDirectionalEdgeInsetsTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSLayoutConstraint-AttributeTests.swift b/Tests/LayoutTests/UIKit/NSLayoutConstraint-AttributeTests.swift index 883a9ed0..ca89d3f9 100644 --- a/Tests/LayoutTests/UIKit/NSLayoutConstraint-AttributeTests.swift +++ b/Tests/LayoutTests/UIKit/NSLayoutConstraint-AttributeTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSLayoutConstraint-AxisTests.swift b/Tests/LayoutTests/UIKit/NSLayoutConstraint-AxisTests.swift index faaffaec..19ce2d17 100644 --- a/Tests/LayoutTests/UIKit/NSLayoutConstraint-AxisTests.swift +++ b/Tests/LayoutTests/UIKit/NSLayoutConstraint-AxisTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSLayoutConstraintTests.swift b/Tests/LayoutTests/UIKit/NSLayoutConstraintTests.swift index eb026bb9..7d6eddcd 100644 --- a/Tests/LayoutTests/UIKit/NSLayoutConstraintTests.swift +++ b/Tests/LayoutTests/UIKit/NSLayoutConstraintTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSLayoutDimensionTests.swift b/Tests/LayoutTests/UIKit/NSLayoutDimensionTests.swift index 761df0bf..8fe5daec 100644 --- a/Tests/LayoutTests/UIKit/NSLayoutDimensionTests.swift +++ b/Tests/LayoutTests/UIKit/NSLayoutDimensionTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSLayoutXAxisAnchorTests.swift b/Tests/LayoutTests/UIKit/NSLayoutXAxisAnchorTests.swift index 24980cf3..5a9216a1 100644 --- a/Tests/LayoutTests/UIKit/NSLayoutXAxisAnchorTests.swift +++ b/Tests/LayoutTests/UIKit/NSLayoutXAxisAnchorTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/NSLayoutYAxisAnchorTests.swift b/Tests/LayoutTests/UIKit/NSLayoutYAxisAnchorTests.swift index 0a649585..74d93773 100644 --- a/Tests/LayoutTests/UIKit/NSLayoutYAxisAnchorTests.swift +++ b/Tests/LayoutTests/UIKit/NSLayoutYAxisAnchorTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIEdgeInsetsTests.swift b/Tests/LayoutTests/UIKit/UIEdgeInsetsTests.swift index 72d8cf9c..4596acf3 100644 --- a/Tests/LayoutTests/UIKit/UIEdgeInsetsTests.swift +++ b/Tests/LayoutTests/UIKit/UIEdgeInsetsTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UILayoutGuideTests.swift b/Tests/LayoutTests/UIKit/UILayoutGuideTests.swift index 3f0d360a..8d951bfe 100644 --- a/Tests/LayoutTests/UIKit/UILayoutGuideTests.swift +++ b/Tests/LayoutTests/UIKit/UILayoutGuideTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UILayoutPriorityTests.swift b/Tests/LayoutTests/UIKit/UILayoutPriorityTests.swift index 0676ef94..a9171bc3 100644 --- a/Tests/LayoutTests/UIKit/UILayoutPriorityTests.swift +++ b/Tests/LayoutTests/UIKit/UILayoutPriorityTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UILayoutSupportTests.swift b/Tests/LayoutTests/UIKit/UILayoutSupportTests.swift index bf99f542..c0f9dbb4 100644 --- a/Tests/LayoutTests/UIKit/UILayoutSupportTests.swift +++ b/Tests/LayoutTests/UIKit/UILayoutSupportTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIView+AutoLayoutTests.swift b/Tests/LayoutTests/UIKit/UIView+AutoLayoutTests.swift index 60f58009..3d9eea95 100644 --- a/Tests/LayoutTests/UIKit/UIView+AutoLayoutTests.swift +++ b/Tests/LayoutTests/UIKit/UIView+AutoLayoutTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIView+FramesTests.swift b/Tests/LayoutTests/UIKit/UIView+FramesTests.swift index a5d996d9..4e26f71d 100644 --- a/Tests/LayoutTests/UIKit/UIView+FramesTests.swift +++ b/Tests/LayoutTests/UIKit/UIView+FramesTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIView+LayoutTests.swift b/Tests/LayoutTests/UIKit/UIView+LayoutTests.swift index 0f64dfc2..acdbe578 100644 --- a/Tests/LayoutTests/UIKit/UIView+LayoutTests.swift +++ b/Tests/LayoutTests/UIKit/UIView+LayoutTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIView+NSLayoutAnchorTests.swift b/Tests/LayoutTests/UIKit/UIView+NSLayoutAnchorTests.swift index 0f808466..bd3745b7 100644 --- a/Tests/LayoutTests/UIKit/UIView+NSLayoutAnchorTests.swift +++ b/Tests/LayoutTests/UIKit/UIView+NSLayoutAnchorTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIView-AutoresizingMaskTests.swift b/Tests/LayoutTests/UIKit/UIView-AutoresizingMaskTests.swift index acab8be8..3ecbc3e8 100644 --- a/Tests/LayoutTests/UIKit/UIView-AutoresizingMaskTests.swift +++ b/Tests/LayoutTests/UIKit/UIView-AutoresizingMaskTests.swift @@ -2,7 +2,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information. diff --git a/Tests/LayoutTests/UIKit/UIViewControllerTests.swift b/Tests/LayoutTests/UIKit/UIViewControllerTests.swift index af75772b..f8bdb6da 100644 --- a/Tests/LayoutTests/UIKit/UIViewControllerTests.swift +++ b/Tests/LayoutTests/UIKit/UIViewControllerTests.swift @@ -1,7 +1,7 @@ // // All Contributions by Match Group // -// Copyright © 2023 Tinder (Match Group, LLC) +// Copyright © 2024 Tinder (Match Group, LLC) // // Licensed under the Match Group Modified 3-Clause BSD License. // See https://github.com/Tinder/Layout/blob/main/LICENSE for license information.