Skip to content

Commit 33831c0

Browse files
author
Baris Sencan
committed
Last adjustments before tagging the new version.
1 parent cbebffd commit 33831c0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

JSONHelper.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = 'JSONHelper'
3-
s.version = '1.3.2'
4-
s.summary = 'Lightning quick JSON deserialization for iOS & OS X written in Swift.'
3+
s.version = '1.4.0'
4+
s.summary = 'Lightning fast JSON deserialization and value conversion library for iOS & OS X written in Swift.'
55
s.homepage = 'https://github.com/isair/JSONHelper'
66
s.license = { :type => 'zlib', :file => 'LICENSE' }
77
s.author = { 'Baris Sencan' => '[email protected]' }
8-
s.source = { :git => 'https://github.com/isair/JSONHelper.git', :tag => '1.3.2' }
8+
s.source = { :git => 'https://github.com/isair/JSONHelper.git', :tag => '1.4.0' }
99
s.source_files = 'JSONHelper/Pod Classes/*.swift'
1010
s.frameworks = 'Foundation'
1111
s.requires_arc = true

JSONHelper/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.2</string>
18+
<string>1.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>8</string>
22+
<string>9</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UIMainStoryboardFile</key>

JSONHelper/Pod Classes/JSONHelper.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public func <<<<T>(inout property: T?, value: AnyObject?) -> T? {
104104
if let stringValue = unwrappedValue as? String {
105105
newValue = NSURL(string: stringValue) as T?
106106
}
107-
} else if property is NSDate? { // Double || NSNumber -> NSDate
107+
} else if property is NSDate? { // Int || Double || NSNumber -> NSDate
108108

109109
if let timestamp = value as? Int {
110110
newValue = NSDate(timeIntervalSince1970: Double(timestamp)) as T

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
JSONHelper
22

3-
Version 1.3.2, October 18, 2014
3+
Version 1.4.0, November 13, 2014
44

55
Copyright (C) 2014 Baris Sencan
66

0 commit comments

Comments
 (0)