Skip to content

Commit

Permalink
5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson committed Feb 7, 2018
1 parent 9ad6874 commit d3d35db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion EmitterKit-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>5.1.0</string>
<string>5.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EmitterKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'EmitterKit'
s.version = '5.1.0'
s.version = '5.2.0'
s.license = 'MIT'
s.summary = 'Type-safe event handling for Swift'
s.homepage = 'https:/aleclarson/emitter-kit'
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# emitter-kit v5.1.0
# emitter-kit v5.2.0

![stable](https://img.shields.io/badge/stability-stable-4EBA0F.svg?style=flat)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/EmitterKit.svg?style=flat)](https://cocoapods.org/pods/EmitterKit)
Expand Down Expand Up @@ -81,6 +81,13 @@ listener = view.on("bounds") { (change: Change<CGRect>) in
}
```

### v5.2.0 changelog

- Added the `Event.getListeners` method
- Listeners are now always called in the order they were added
- Event<Void>.emit() can be called without an argument
- Carthage support has been improved

### v5.1.0 changelog

- The `NotificationListener` class now takes a `Notification` instead of an `NSDictionary`.
Expand Down

0 comments on commit d3d35db

Please sign in to comment.