Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit c562b16

Browse files
committed
feat: Update dependencies
- Update combine-extensions from 0.0.5 to 0.1.0
1 parent 0598ec7 commit c562b16

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.8
22

33
import PackageDescription
44

@@ -19,7 +19,7 @@ let package = Package(
1919
dependencies: [
2020
.package(
2121
url: "https://github.com/capturecontext/combine-extensions.git",
22-
.upToNextMinor(from: "0.0.5")
22+
.upToNextMinor(from: "0.1.0")
2323
)
2424
],
2525
targets: [

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# combine-cocoa
22

3-
[![SwiftPM 5.3](https://img.shields.io/badge/swiftpm-5.3-ED523F.svg?style=flat)](https://swift.org/download/) ![Platforms](https://img.shields.io/badge/Platforms-iOS_13_|_macOS_10.15_|_tvOS_14_|_watchOS_7-ED523F.svg?style=flat) [![@maximkrouk](https://img.shields.io/badge/contact-@capturecontext-1DA1F2.svg?style=flat&logo=twitter)](https://twitter.com/capture_context)
3+
[![SwiftPM 5.8](https://img.shields.io/badge/swiftpm-5.8-ED523F.svg?style=flat)](https://swift.org/download/) ![Platforms](https://img.shields.io/badge/Platforms-iOS_13_|_macOS_10.15_|_tvOS_14_|_watchOS_7-ED523F.svg?style=flat) [![@maximkrouk](https://img.shields.io/badge/contact-@capturecontext-1DA1F2.svg?style=flat&logo=twitter)](https://twitter.com/capture_context)
44

55
Cocoa extensions for Apple Combine framework.
66

@@ -24,8 +24,6 @@ Cocoa extensions for Apple Combine framework.
2424
- [x] Keyboard
2525
- [x] AnimatedAssignSubscriber (_might be improved_)
2626

27-
28-
2927
## Installation
3028

3129
### Basic
@@ -44,7 +42,7 @@ If you use SwiftPM for your project, you can add CombineCocoa to your package fi
4442
.package(
4543
name: "combine-cocoa",
4644
url: "https://github.com/capturecontext/combine-cocoa.git",
47-
.upToNextMinor(from: "0.0.2")
45+
.upToNextMinor(from: "0.1.0")
4846
)
4947
```
5048

@@ -57,8 +55,6 @@ Do not forget about target dependencies:
5755
)
5856
```
5957

60-
61-
6258
## License
6359

6460
This library is released under the MIT license. See [LICENSE](LICENSE) for details.

Sources/CombineCocoa/CombineControlTarget.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
// MARK: - Subscription
6363
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
6464
extension Combine.Publishers.ControlTarget {
65-
private final class Subscription<S: Subscriber, Control: AnyObject>: Combine.Subscription
65+
private final class Subscription<S: Subscriber>: Combine.Subscription
6666
where S.Input == Void {
6767
private var subscriber: S?
6868
weak private var control: Control?

0 commit comments

Comments
 (0)