Skip to content

Commit 608136e

Browse files
committed
RxSwift 5.1.1: Restore watchOS Support
1 parent 0b6d43f commit 608136e

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ Carthage
3030
# AppCode
3131
.idea
3232

33+
# SPM
34+
.build
35+
3336
# Cocoapods
3437
# We recommend against adding the Pods directory to your .gitignore. However
3538
# you should judge for yourself, the pros and cons are mentioned at:

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "RxSwiftExt",
77
platforms: [
8-
.iOS(.v8), .tvOS(.v9), .macOS(.v10_11)
8+
.iOS(.v8), .tvOS(.v9), .macOS(.v10_11), .watchOS(.v3)
99
],
1010
products: [
1111
.library(name: "RxSwiftExt", targets: ["RxSwiftExt"]),

RxSwiftExt.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxSwiftExt"
3-
s.version = "5.1.0"
3+
s.version = "5.1.1"
44
s.summary = "RxSwift operators not found in the core distribtion"
55
s.description = <<-DESC
66
A collection of operators for RxSwift adding commonly requested operations not found in the core distribution

Source/RxCocoa/UIScrollView+reachedBottom.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2019 RxSwift Community. All rights reserved.
77
//
88

9-
#if canImport(UIKit)
9+
#if os(iOS)
1010
import UIKit
1111
import RxSwift
1212
import RxCocoa

0 commit comments

Comments
 (0)