Skip to content

Commit

Permalink
Increment build number
Browse files Browse the repository at this point in the history
And removed another left-over named tuple.
  • Loading branch information
Baris Sencan committed Apr 15, 2015
1 parent ca2fb14 commit 30b3268
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion JSONHelper.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'JSONHelper'
s.version = '1.5.3'
s.version = '1.5.4'
s.license = { :type => 'zlib', :file => 'LICENSE' }
s.summary = 'Lightning fast JSON deserialization and value conversion library for iOS & OS X written in Swift.'

Expand Down
2 changes: 1 addition & 1 deletion JSONHelper/JSONHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public func <-- (inout property: NSDate?, valueAndFormat: (AnyObject?, AnyObject
return property
}

public func <-- (inout property: NSDate, valueAndFormat: (value: AnyObject?, format: AnyObject?)) -> NSDate {
public func <-- (inout property: NSDate, valueAndFormat: (AnyObject?, AnyObject?)) -> NSDate {
var date: NSDate?
date <-- valueAndFormat
if let date = date { property = date }
Expand Down
4 changes: 2 additions & 2 deletions JSONHelper/Supporting Files/Mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.5.3</string>
<string>1.5.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>15</string>
<string>16</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions JSONHelper/Supporting Files/iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.5.3</string>
<string>1.5.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>15</string>
<string>16</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit 30b3268

Please sign in to comment.