Skip to content

Commit

Permalink
Remove redundant availability requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
srdanrasic committed Dec 7, 2019
1 parent 82c6bd3 commit 60852a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ReactiveKit.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "ReactiveKit"
s.version = "3.15.1"
s.version = "3.15.2"
s.summary = "A Swift Reactive Programming Framework"
s.description = "ReactiveKit is a Swift framework for reactive and functional reactive programming."
s.homepage = "https://github.com/DeclarativeHub/ReactiveKit"
s.license = 'MIT'
s.author = { "Srdan Rasic" => "srdan.rasic@gmail.com" }
s.source = { :git => "https://github.com/DeclarativeHub/ReactiveKit.git", :tag => "v3.15.1" }
s.source = { :git => "https://github.com/DeclarativeHub/ReactiveKit.git", :tag => "v3.15.2" }

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
Expand Down
1 change: 0 additions & 1 deletion Sources/ObservableObject.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public protocol ObservableObject: AnyObject {
var objectWillChange: Self.ObjectWillChangeSignal { get }
}

@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
extension ObservableObject where Self.ObjectWillChangeSignal == Signal<Void, Never> {

/// A publisher that emits before the object has changed.
Expand Down
2 changes: 1 addition & 1 deletion Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.15.1</string>
<string>3.15.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 60852a1

Please sign in to comment.