-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated RxSwift to 6.0 and ios.deployment_target #102
Conversation
@jdisho you're listed as the current owner on the project, care to review and cut a new release? Thanks @Loupehope ! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your work @Loupehope 😊
However, this PR contains work that IMO it should be addressed in separate PRs. I would appreciate if you can leave only the work about RxSwift 6.0 here and open new PRs about the code indentation part and the #98.
let keyboardWillHide = UIResponder.keyboardWillHideNotification | ||
let keyboardFrameEndKey = UIResponder.keyboardFrameEndUserInfoKey | ||
let applicationDidFinishLaunching = UIApplication.didFinishLaunchingNotification | ||
#else |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this change intentional? Why should we drop support for versions lower than 4.2?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In .podspec and package.swift files swift 5.0 is listed as minimal supported version, isn't it?
The CI keeps failing. Mind having a look? 😊 |
RxKeyboard.podspec
Outdated
s.summary = 'Reactive Keyboard in iOS' | ||
s.homepage = 'https://github.com/RxSwiftCommunity/RxKeyboard' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Suyeol Jeon' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxKeyboard.git', | ||
:tag => s.version.to_s } | ||
s.source_files = 'Sources/**/*.swift' | ||
s.frameworks = 'UIKit', 'Foundation' | ||
s.frameworks = 'UIKit' | ||
s.requires_arc = true | ||
s.swift_version = "5.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since RxSwift's Swift version is 5.1
, I think this needs to reflected too.
We would appreciate your help @freak4pc regarding the CI 😊 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thank you
Updated: