Skip to content

Commit f9240ed

Browse files
authored
Prepare 4.1.2 release (#189)
* Changes user-device to device model identifier (#75) * installs new deviceModel into EnvironmentReporter and renames old deviceModel to deviceType * use CwSysCtl for macos model * Replaced entire flag store ff array instead of in place manipulation * Updated CHANGELOG and bumped version number * Added correct copy behavior to FlagStore delete and update * Improved CHANGELOG entry for 4.0.1 * Changed version to 4.1.0, updated CHANGELOG * Update 4.1.0 release date * installs ios-eventsource 4.0.2 * installs CocoaPods 1.7.2 * clears swift 5 update warning * updates circle config to use xcode 10.2.1 * advances version to 4.1.1 * installs Nimble 8.0.2 * updates SwiftLint to 0.33.0 * Update 4.1.1 release date * Improved CHANGELOG 4.1.1 description * Made CHANGELOG 4.1.1 more consistent * 4.1.2 release, updated version numbers and CHANGELOG * Made 4.1.2 CHANGELOG entry more descriptive * formatting
1 parent b014422 commit f9240ed

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ All notable changes to the LaunchDarkly iOS SDK will be documented in this file.
55
### Multiple Environment clients
66
Version 4.0.0 does not support multiple environments. If you use version `2.14.0` or later and set `LDConfig`'s `secondaryMobileKeys` you will not be able to migrate to version `4.0.0`. Multiple Environments will be added in a future release to the Swift SDK.
77

8+
## [4.1.2] - 2019-07-11
9+
### Fixed
10+
- WatchKit is now conditionally imported in WatchOS only, to fix an error in Xcode 11.
11+
- Comparing two nil objects of type `[String: Any]?` no longer causes a crash.
12+
813
## [4.1.1] - 2019-07-09
9-
### Change
14+
### Changed
1015
- Updated to `ios-eventsource` version `4.0.2`. This fixes a potential hang on LDClient start.
1116

1217
## [4.1.0] - 2019-06-19
13-
### Change
18+
### Changed
1419
- Installs new `deviceModel` into `EnvironmentReporter` and renames old `deviceModel` to `deviceType`.
1520
- Updated MacOS model detection to use `CwSysCtl`.
1621

LaunchDarkly.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |ld|
22

33
ld.name = "LaunchDarkly"
4-
ld.version = "4.1.1"
4+
ld.version = "4.1.2"
55
ld.summary = "iOS SDK for LaunchDarkly"
66

77
ld.description = <<-DESC
@@ -25,7 +25,7 @@ Pod::Spec.new do |ld|
2525
ld.tvos.deployment_target = "9.0"
2626
ld.osx.deployment_target = "10.10"
2727

28-
ld.source = { :git => "https://github.com/launchdarkly/ios-client-sdk.git", :tag => '4.1.1'}
28+
ld.source = { :git => "https://github.com/launchdarkly/ios-client-sdk.git", :tag => '4.1.2'}
2929

3030
ld.source_files = "LaunchDarkly/LaunchDarkly/**/*.{h,m,swift}"
3131

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $ gem install cocoapods
3535
```ruby
3636
use_frameworks!
3737
target 'YourTargetName' do
38-
pod 'LaunchDarkly', '4.1.1'
38+
pod 'LaunchDarkly', '4.1.2'
3939
end
4040
```
4141

@@ -70,7 +70,7 @@ $ brew install carthage
7070
To integrate LaunchDarkly into your Xcode project using Carthage, specify it in your `Cartfile`:
7171

7272
```ogdl
73-
github "launchdarkly/ios-client-sdk" "4.1.1"
73+
github "launchdarkly/ios-client-sdk" "4.1.2"
7474
```
7575

7676
Run `carthage update` to build the framework. Optionally, specify the `--platform` to build only the frameworks that support your platform(s).

0 commit comments

Comments
 (0)