diff --git a/DarklyEventSource.podspec b/DarklyEventSource.podspec index 70e97f0..b058389 100644 --- a/DarklyEventSource.podspec +++ b/DarklyEventSource.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "DarklyEventSource" - s.version = "3.2.0" + s.version = "3.2.1" s.summary = "HTML5 Server-Sent Events in your Cocoa app." s.homepage = "https://github.com/launchdarkly/ios-eventsource" s.license = 'MIT (see LICENSE.txt)' s.author = { "Neil Cowburn" => "git@neilcowburn.com" } - s.source = { :git => "https://github.com/launchdarkly/ios-eventsource.git", :tag => '3.2.0' } + s.source = { :git => "https://github.com/launchdarkly/ios-eventsource.git", :tag => '3.2.1' } s.source_files = 'LDEventSource', 'LDEventSource/LDEventSource.{h,m}' s.ios.deployment_target = '8.0' s.osx.deployment_target = '10.10' diff --git a/LDEventSource/Info.plist b/LDEventSource/Info.plist index 957c532..b254136 100644 --- a/LDEventSource/Info.plist +++ b/LDEventSource/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 3.2.0 + 3.2.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/LDEventSource/LDEventSource.m b/LDEventSource/LDEventSource.m index f1f5500..a2e5c69 100644 --- a/LDEventSource/LDEventSource.m +++ b/LDEventSource/LDEventSource.m @@ -11,7 +11,7 @@ static CGFloat const ES_RETRY_INTERVAL = 1.0; static CGFloat const ES_DEFAULT_TIMEOUT = 300.0; -static CGFloat const ES_MAX_RECONNECT_TIME = 180.0; +static CGFloat const ES_MAX_RECONNECT_TIME = 3600.0; static NSString *const ESKeyValueDelimiter = @":"; static NSString *const LDEventSeparatorLFLF = @"\n\n"; diff --git a/README.md b/README.md index 1213c61..97799e8 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' target 'TargetName' do -pod 'DarklyEventSource' +pod 'DarklyEventSource', '~> 3.2.1' end ```