Skip to content

Commit

Permalink
Bump to 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed May 29, 2018
1 parent 908a4f9 commit 8692935
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions RxMKMapView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'RxMKMapView'
s.version = '4.0.0'
s.version = '4.1.0'
s.summary = 'Reactive wrapper for MKMapView `delegate`'
s.description = <<-DESC
RxMKMapView is a Reactive wrapper for MKMapView `delegate`.
Expand All @@ -25,12 +25,17 @@ pod "RxMKMapView"
## Example Usages
```swift
// MARK: Setup MKMapView
let mapView = MKMapView(frame: view.frame)
view.addSubview(mapView)
// MARK: Bind Annotations
requestForAnnotations() // Observable<MKAnnotation>
.asDriver(onErrorJustReturn: [])
.drive(mapView.rx.annotations)
.disposed(by: disposeBag)
// MARK: Respond to Loading Events
mapView.rx.willStartLoadingMap
.asDriver()
Expand All @@ -50,7 +55,7 @@ DESC

s.homepage = 'https://github.com/RxSwiftCommunity/RxMKMapView'
s.license = 'MIT'
s.author = { 'Spiros Gerokostas' => 'spiros.gerokostas@gmail.com' }
s.author = { 'RxSwift Community' => 'community@rxswift.org' }
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxMKMapView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/sger'
s.swift_version = '4.0'
Expand Down

0 comments on commit 8692935

Please sign in to comment.