Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 ).
//</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/AnyEffect.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/Effect.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/EffectsBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/PropertyWrappers/CopyOnWrite.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/PropertyWrappers/Ignored.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/PropertyWrappers/Triggered.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/Reducer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/Store.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWay/ViewStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWayTesting/Store+Testing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sources/OneWayTesting/TestingEnvironment.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTestingTests/TestingTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTestingTests/XCTestTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/EffectTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/EffectsBuilderTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/PropertyWrappersTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/StoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/TestHelper/Publisher+Async.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/TestHelper/XCTestCase+Expect.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Tests/OneWayTests/ViewStoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down