Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to version 2.13.4 #143

Merged
merged 1 commit into from
Aug 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the LaunchDarkly iOS SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [2.13.4] - 2018-08-23
### Changed
- Update to DarklyEventSource `3.2.7`

## [2.13.3] - 2018-08-15
### Changed
- Synchronized summary event creation to limit thread access and protect data integrity
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "launchdarkly/ios-eventsource" >= 3.2.6
github "launchdarkly/ios-eventsource" >= 3.2.7
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "launchdarkly/ios-eventsource" "3.2.5"
github "launchdarkly/ios-eventsource" "3.2.7"
2 changes: 1 addition & 1 deletion Darkly/DarklyConstants.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#import "DarklyConstants.h"

NSString * const kClientVersion = @"2.13.3";
NSString * const kClientVersion = @"2.13.4";
NSString * const kBaseUrl = @"https://app.launchdarkly.com";
NSString * const kEventsUrl = @"https://mobile.launchdarkly.com";
NSString * const kStreamUrl = @"https://clientstream.launchdarkly.com";
Expand Down
6 changes: 3 additions & 3 deletions LaunchDarkly.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LaunchDarkly"
s.version = "2.13.3"
s.version = "2.13.4"
s.summary = "iOS SDK for LaunchDarkly"

s.description = <<-DESC
Expand All @@ -23,7 +23,7 @@ Pod::Spec.new do |s|
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = '10.10'

s.source = { :git => "https://github.com/launchdarkly/ios-client.git", :tag => "2.13.3" }
s.source = { :git => "https://github.com/launchdarkly/ios-client.git", :tag => "2.13.4" }

s.source_files = 'Darkly/**/*.{h,m}'

Expand All @@ -32,6 +32,6 @@ Pod::Spec.new do |s|
s.xcconfig = { 'CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS' => 'NO' }

s.subspec 'Core' do |eventSource|
eventSource.dependency 'DarklyEventSource', '~>3.2.6'
eventSource.dependency 'DarklyEventSource', '~>3.2.7'
end
end
8 changes: 4 additions & 4 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
use_frameworks!
target 'Darkly_iOS' do
platform :ios, '8.0'
pod 'DarklyEventSource', '~> 3.2.6'
pod 'DarklyEventSource', '~> 3.2.7'
end

target 'Darkly_tvOS' do
platform :tvos, '9.0'
pod 'DarklyEventSource', '~> 3.2.6'
pod 'DarklyEventSource', '~> 3.2.7'
end

target 'Darkly_watchOS' do
platform :watchos, '2.0'
pod 'DarklyEventSource', '~> 3.2.6'
pod 'DarklyEventSource', '~> 3.2.7'
end

target 'Darkly_osx' do
platform :osx, '10.10'
pod 'DarklyEventSource', '~> 3.2.6'
pod 'DarklyEventSource', '~> 3.2.7'
end

target 'DarklyTests' do
Expand Down
8 changes: 4 additions & 4 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- DarklyEventSource (3.2.6)
- DarklyEventSource (3.2.7)
- OCMock (3.4.2)
- OHHTTPStubs (4.8.0):
- OHHTTPStubs/Default (= 4.8.0)
Expand All @@ -16,15 +16,15 @@ PODS:
- OHHTTPStubs/OHPathHelpers (4.8.0)

DEPENDENCIES:
- DarklyEventSource (~> 3.2.6)
- DarklyEventSource (~> 3.2.7)
- OCMock (~> 3.1)
- OHHTTPStubs (~> 4.2)

SPEC CHECKSUMS:
DarklyEventSource: 11afc48c3da1f5ba336d2413439028cb1bf7eb15
DarklyEventSource: 8116766bf7e5676bef84a20147894b8aced82c08
OCMock: ebe9ee1dca7fbed0ff9193ac0b3e2d8862ea56f6
OHHTTPStubs: b393565822317305b87a1440d4c7aff131679f66

PODFILE CHECKSUM: 0633e86cd80b24e2581bb60b5f28ec054c41977c
PODFILE CHECKSUM: 65f9a4bbcd652b6169d1120610b2d0d5d5a74120

COCOAPODS: 1.4.0
11 changes: 7 additions & 4 deletions Pods/DarklyEventSource/LDEventSource/LDEventSource.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/DarklyEventSource/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions Pods/Local Podspecs/DarklyEventSource.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading