Skip to content

Commit bb38461

Browse files
authored
Clean up uncategorized DocC (pointfreeco#1956)
1 parent ece109f commit bb38461

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/EffectDeprecations.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Avoid using deprecated APIs in your app. Select a method to see the replacement
88

99
## Topics
1010

11+
### Type names and aliases
12+
13+
- ``Effect``
14+
- ``EffectPublisher``
15+
1116
### Creating an effect
1217

1318
- ``EffectPublisher/task(priority:operation:)``

Sources/ComposableArchitecture/Documentation.docc/Extensions/Deprecations/SwiftUIDeprecations.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ Avoid using deprecated APIs in your app. Select a method to see the replacement
88

99
## Topics
1010

11+
### ActionSheetState
12+
13+
- ``ActionSheetState``
14+
15+
### BindableState
16+
17+
- ``BindableState``
18+
1119
### ForEachStore
1220

1321
- ``ForEachStore/init(_:content:)-34mtj``

Sources/ComposableArchitecture/Documentation.docc/Extensions/ReducerProtocol.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@
3030

3131
- ``dependency(_:_:)``
3232
- ``transformDependency(_:transform:)``
33-
- ``_printChanges(_:)``
3433
- ``signpost(_:log:)``
3534

35+
### Supporting types
36+
37+
- ``ReducerProtocolOf``
38+
3639
### Deprecations
3740

3841
- <doc:ReducerDeprecations>

Sources/ComposableArchitecture/Internal/Deprecations.swift

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,6 @@ import Combine
33
import SwiftUI
44
import XCTestDynamicOverlay
55

6-
// MARK: - Deprecated after 0.51.0
7-
8-
// NB Soft deprecation to avoid deprecation messages when this type is inferred in `Effect`
9-
// without having to qualify it as `ComposableArchitecture.Send` there.
10-
@available(iOS, deprecated: 9999.0, message: "Use 'Send<Action>' instead.")
11-
@available(macOS, deprecated: 9999.0, message: "Use 'Send<Action>' instead.")
12-
@available(tvOS, deprecated: 9999.0, message: "Use 'Send<Action>' instead.")
13-
@available(watchOS, deprecated: 9999.0, message: "Use 'Send<Action>' instead.")
14-
extension EffectTask {
15-
public typealias Send = ComposableArchitecture.Send
16-
}
17-
186
// MARK: - Deprecated after 0.49.2
197

208
@available(

0 commit comments

Comments
 (0)