From c1fddd92534c354e59d58c7d037b81b31e09cba6 Mon Sep 17 00:00:00 2001 From: Seungyeop Yeom Date: Sun, 19 Oct 2025 18:55:37 +0900 Subject: [PATCH] Update the copyright year --- .../package.xcworkspace/xcshareddata/IDETemplateMacros.plist | 2 +- LICENSE | 2 +- Sources/OneWay/AnyEffect.swift | 2 +- Sources/OneWay/AsyncSequences/AsyncViewStateSequence.swift | 2 +- Sources/OneWay/Effect.swift | 2 +- Sources/OneWay/EffectsBuilder.swift | 2 +- Sources/OneWay/PropertyWrappers/CopyOnWrite.swift | 2 +- Sources/OneWay/PropertyWrappers/Ignored.swift | 2 +- Sources/OneWay/PropertyWrappers/Triggered.swift | 2 +- Sources/OneWay/Reducer.swift | 2 +- Sources/OneWay/Store.swift | 2 +- Sources/OneWay/ViewStore.swift | 2 +- Sources/OneWayTesting/Store+Testing.swift | 2 +- Sources/OneWayTesting/TestingEnvironment.swift | 2 +- Tests/OneWayTestingTests/TestingTests.swift | 2 +- Tests/OneWayTestingTests/XCTestTests.swift | 2 +- Tests/OneWayTests/EffectTests.swift | 2 +- Tests/OneWayTests/EffectsBuilderTests.swift | 2 +- Tests/OneWayTests/PropertyWrappersTests.swift | 2 +- Tests/OneWayTests/StoreTests.swift | 2 +- Tests/OneWayTests/TestHelper/Publisher+Async.swift | 2 +- Tests/OneWayTests/TestHelper/XCTestCase+Expect.swift | 2 +- Tests/OneWayTests/ViewStoreTests.swift | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDETemplateMacros.plist b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDETemplateMacros.plist index cc2a154..0667fe5 100644 --- a/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDETemplateMacros.plist +++ b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDETemplateMacros.plist @@ -7,7 +7,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // diff --git a/LICENSE b/LICENSE index fef38ba..ff9e1c7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022-2024 SeungYeop Yeom +Copyright (c) 2022-2025 SeungYeop Yeom Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Sources/OneWay/AnyEffect.swift b/Sources/OneWay/AnyEffect.swift index eb9702f..cbc23d9 100644 --- a/Sources/OneWay/AnyEffect.swift +++ b/Sources/OneWay/AnyEffect.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// An effect that performs type erasure by wrapping another effect. diff --git a/Sources/OneWay/AsyncSequences/AsyncViewStateSequence.swift b/Sources/OneWay/AsyncSequences/AsyncViewStateSequence.swift index b1b25e1..1255929 100644 --- a/Sources/OneWay/AsyncSequences/AsyncViewStateSequence.swift +++ b/Sources/OneWay/AsyncSequences/AsyncViewStateSequence.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// An asynchronous sequence of the ``ViewStore``'s state. diff --git a/Sources/OneWay/Effect.swift b/Sources/OneWay/Effect.swift index d67d8e9..e77e6f1 100644 --- a/Sources/OneWay/Effect.swift +++ b/Sources/OneWay/Effect.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// A protocol encapsulating a unit of work that can be executed in the external environment and can diff --git a/Sources/OneWay/EffectsBuilder.swift b/Sources/OneWay/EffectsBuilder.swift index 40c4023..e2ed072 100644 --- a/Sources/OneWay/EffectsBuilder.swift +++ b/Sources/OneWay/EffectsBuilder.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import Foundation diff --git a/Sources/OneWay/PropertyWrappers/CopyOnWrite.swift b/Sources/OneWay/PropertyWrappers/CopyOnWrite.swift index 46e5c4b..ac41718 100644 --- a/Sources/OneWay/PropertyWrappers/CopyOnWrite.swift +++ b/Sources/OneWay/PropertyWrappers/CopyOnWrite.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// A property wrapper that facilitates the use of copy-on-write semantics to eliminate the cost of diff --git a/Sources/OneWay/PropertyWrappers/Ignored.swift b/Sources/OneWay/PropertyWrappers/Ignored.swift index cf64546..ee593af 100644 --- a/Sources/OneWay/PropertyWrappers/Ignored.swift +++ b/Sources/OneWay/PropertyWrappers/Ignored.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// A property wrapper that acts like the same value, regardless of changes in its actual value. diff --git a/Sources/OneWay/PropertyWrappers/Triggered.swift b/Sources/OneWay/PropertyWrappers/Triggered.swift index ac3f3e6..e88aa90 100644 --- a/Sources/OneWay/PropertyWrappers/Triggered.swift +++ b/Sources/OneWay/PropertyWrappers/Triggered.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// A property wrapper that makes a value behave like a different one just by assigning it, even if diff --git a/Sources/OneWay/Reducer.swift b/Sources/OneWay/Reducer.swift index c0418d2..56316cd 100644 --- a/Sources/OneWay/Reducer.swift +++ b/Sources/OneWay/Reducer.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // /// A protocol defining a reduce fuction to transition the current state to the next state and a diff --git a/Sources/OneWay/Store.swift b/Sources/OneWay/Store.swift index db1d7e6..316b59f 100644 --- a/Sources/OneWay/Store.swift +++ b/Sources/OneWay/Store.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // #if canImport(Foundation) diff --git a/Sources/OneWay/ViewStore.swift b/Sources/OneWay/ViewStore.swift index 5c40f0f..31df70c 100644 --- a/Sources/OneWay/ViewStore.swift +++ b/Sources/OneWay/ViewStore.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // #if !os(Linux) diff --git a/Sources/OneWayTesting/Store+Testing.swift b/Sources/OneWayTesting/Store+Testing.swift index 9d56de0..c29751b 100644 --- a/Sources/OneWayTesting/Store+Testing.swift +++ b/Sources/OneWayTesting/Store+Testing.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import OneWay diff --git a/Sources/OneWayTesting/TestingEnvironment.swift b/Sources/OneWayTesting/TestingEnvironment.swift index f616d32..137ff81 100644 --- a/Sources/OneWayTesting/TestingEnvironment.swift +++ b/Sources/OneWayTesting/TestingEnvironment.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // #if canImport(Testing) diff --git a/Tests/OneWayTestingTests/TestingTests.swift b/Tests/OneWayTestingTests/TestingTests.swift index afc0667..9425ea5 100644 --- a/Tests/OneWayTestingTests/TestingTests.swift +++ b/Tests/OneWayTestingTests/TestingTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // #if canImport(Testing) && canImport(Darwin) diff --git a/Tests/OneWayTestingTests/XCTestTests.swift b/Tests/OneWayTestingTests/XCTestTests.swift index 74b7272..7fc105b 100644 --- a/Tests/OneWayTestingTests/XCTestTests.swift +++ b/Tests/OneWayTestingTests/XCTestTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // #if canImport(XCTest) && canImport(Darwin) diff --git a/Tests/OneWayTests/EffectTests.swift b/Tests/OneWayTests/EffectTests.swift index 8c513c5..8f5063f 100644 --- a/Tests/OneWayTests/EffectTests.swift +++ b/Tests/OneWayTests/EffectTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import Clocks diff --git a/Tests/OneWayTests/EffectsBuilderTests.swift b/Tests/OneWayTests/EffectsBuilderTests.swift index dab9fd4..d307ce9 100644 --- a/Tests/OneWayTests/EffectsBuilderTests.swift +++ b/Tests/OneWayTests/EffectsBuilderTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import OneWay diff --git a/Tests/OneWayTests/PropertyWrappersTests.swift b/Tests/OneWayTests/PropertyWrappersTests.swift index 4f9c4b6..08f4f9f 100644 --- a/Tests/OneWayTests/PropertyWrappersTests.swift +++ b/Tests/OneWayTests/PropertyWrappersTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import OneWay diff --git a/Tests/OneWayTests/StoreTests.swift b/Tests/OneWayTests/StoreTests.swift index e327c93..7558fa7 100644 --- a/Tests/OneWayTests/StoreTests.swift +++ b/Tests/OneWayTests/StoreTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import Clocks diff --git a/Tests/OneWayTests/TestHelper/Publisher+Async.swift b/Tests/OneWayTests/TestHelper/Publisher+Async.swift index 9c6993f..2c89f16 100644 --- a/Tests/OneWayTests/TestHelper/Publisher+Async.swift +++ b/Tests/OneWayTests/TestHelper/Publisher+Async.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // #if canImport(Combine) diff --git a/Tests/OneWayTests/TestHelper/XCTestCase+Expect.swift b/Tests/OneWayTests/TestHelper/XCTestCase+Expect.swift index 54cec7e..8b06a59 100644 --- a/Tests/OneWayTests/TestHelper/XCTestCase+Expect.swift +++ b/Tests/OneWayTests/TestHelper/XCTestCase+Expect.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import XCTest diff --git a/Tests/OneWayTests/ViewStoreTests.swift b/Tests/OneWayTests/ViewStoreTests.swift index ba60683..cc0a801 100644 --- a/Tests/OneWayTests/ViewStoreTests.swift +++ b/Tests/OneWayTests/ViewStoreTests.swift @@ -2,7 +2,7 @@ // OneWay // The MIT License (MIT) // -// Copyright (c) 2022-2024 SeungYeop Yeom ( https://github.com/DevYeom ). +// Copyright (c) 2022-2025 SeungYeop Yeom ( https://github.com/DevYeom ). // import OneWay