diff --git a/Action.podspec b/Action.podspec index 97b04825..983abcbf 100644 --- a/Action.podspec +++ b/Action.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Action" - s.version = "1.2.2" + s.version = "1.3.0" s.summary = "Abstracts actions to be performed in RxSwift." s.description = <<-DESC Encapsulates an action to be performed, usually by a UIButton press. @@ -21,8 +21,8 @@ Pod::Spec.new do |s| s.source_files = "*.{swift}" s.frameworks = "Foundation" - s.dependency "RxSwift", '~> 2.6' - s.dependency "RxCocoa", '~> 2.6' + s.dependency "RxSwift" + s.dependency "RxCocoa" s.watchos.exclude_files = "UIButton+Rx.swift", "UIBarButtonItem+Action.swift", "AlertAction.swift" s.osx.exclude_files = "UIButton+Rx.swift", "UIBarButtonItem+Action.swift", "AlertAction.swift" diff --git a/Changelog.md b/Changelog.md index 81cfe41d..9631cb3b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ Current master - Added inputs subject to trigger actins by observables. See [#37](https://github.com/RxSwiftCommunity/Action/pull/37). - Fixes a problem with observable deallocation related to `rx_action` button property. See [#33](https://github.com/RxSwiftCommunity/Action/pull/33). - Improved Carthage compatibility. See [#34](https://github.com/RxSwiftCommunity/Action/pull/34). +- Swift 2.3 support. 1.2.1 -----