Skip to content

Commit

Permalink
RxSwift 5.1.1: Restore watchOS Support
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed Sep 14, 2019
1 parent 0b6d43f commit 608136e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ Carthage
# AppCode
.idea

# SPM
.build

# Cocoapods
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
Expand Down
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "RxSwiftExt",
platforms: [
.iOS(.v8), .tvOS(.v9), .macOS(.v10_11)
.iOS(.v8), .tvOS(.v9), .macOS(.v10_11), .watchOS(.v3)
],
products: [
.library(name: "RxSwiftExt", targets: ["RxSwiftExt"]),
Expand Down
2 changes: 1 addition & 1 deletion RxSwiftExt.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxSwiftExt"
s.version = "5.1.0"
s.version = "5.1.1"
s.summary = "RxSwift operators not found in the core distribtion"
s.description = <<-DESC
A collection of operators for RxSwift adding commonly requested operations not found in the core distribution
Expand Down
2 changes: 1 addition & 1 deletion Source/RxCocoa/UIScrollView+reachedBottom.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2019 RxSwift Community. All rights reserved.
//

#if canImport(UIKit)
#if os(iOS)
import UIKit
import RxSwift
import RxCocoa
Expand Down

0 comments on commit 608136e

Please sign in to comment.