Skip to content

Commit 480efff

Browse files
authored
Merge pull request #62 from mendesbarreto/db/support-swift4.1
Add Support to Swift 4.1
2 parents f6b949f + 9aa7d2b commit 480efff

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ Carthage/
1111
Examples/**/Podfile.lock
1212
*.xcconfig
1313
*.framework.zip
14+
.idea/

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0
1+
4.1

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveX/RxSwift" "4.0.0"
1+
github "ReactiveX/RxSwift" "4.1.2"

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:4.0
1+
// swift-tools-version:4.1
22

33
import PackageDescription
44

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RxKeyboard
22

3-
![Swift](https://img.shields.io/badge/Swift-4.0-orange.svg)
3+
![Swift](https://img.shields.io/badge/Swift-4.1-orange.svg)
44
[![CocoaPods](http://img.shields.io/cocoapods/v/RxKeyboard.svg)](https://cocoapods.org/pods/RxKeyboard)
55
[![Build Status](https://travis-ci.org/RxSwiftCommunity/RxKeyboard.svg?branch=master)](https://travis-ci.org/RxSwiftCommunity/RxKeyboard)
66
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
@@ -93,8 +93,8 @@ RxKeyboard.instance.frame
9393

9494
## Dependencies
9595

96-
- [RxSwift](https://github.com/ReactiveX/RxSwift) (~> 4.0.0)
97-
- [RxCocoa](https://github.com/ReactiveX/RxSwift) (~> 4.0.0)
96+
- [RxSwift](https://github.com/ReactiveX/RxSwift) (>= 4.0.0)
97+
- [RxCocoa](https://github.com/ReactiveX/RxSwift) (>= 4.0.0)
9898

9999
## Requirements
100100

@@ -124,7 +124,10 @@ $ swift package generate-xcodeproj
124124
```
125125

126126
⚠️ With Carthage, RxKeyboard only supports binary installation:
127-
127+
128+
* 0.8.2
129+
* Xcode 9.3 (9E145)
130+
* Swift 4.1.0 (swiftlang-902.0.48 clang-902.0.37.1)
128131
* 0.7.1
129132
* Xcode 9.1 (9B55)
130133
* Swift 4.0.2 (swiftlang-900.0.69.2 clang-900.0.38)

RxKeyboard.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 = 'RxKeyboard'
3-
s.version = '0.8.1'
3+
s.version = '0.8.2'
44
s.summary = 'Reactive Keyboard in iOS'
55
s.homepage = 'https://github.com/RxSwiftCommunity/RxKeyboard'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

0 commit comments

Comments
 (0)