diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 430e28e5..b7ef03eb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "9.3.0" + ".": "9.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c57df781..1e3ecb18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to the LaunchDarkly iOS SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [9.4.0](https://github.com/launchdarkly/ios-client-sdk/compare/9.3.0...9.4.0) (2024-02-21) + + +### Features + +* Add new identify method with time out support ([#344](https://github.com/launchdarkly/ios-client-sdk/issues/344)) ([34ba8ab](https://github.com/launchdarkly/ios-client-sdk/commit/34ba8ab380dfc56aa21d2e13fadb634da0a01bdb)) +* Implement shedding identity queue ([#343](https://github.com/launchdarkly/ios-client-sdk/issues/343)) ([393a28c](https://github.com/launchdarkly/ios-client-sdk/commit/393a28c73cdcece4edfba373aa9ec9e5c4ae4080)) +* Introduce variation method with generic return types ([#342](https://github.com/launchdarkly/ios-client-sdk/issues/342)) ([7ff2ffb](https://github.com/launchdarkly/ios-client-sdk/commit/7ff2ffbc9e651114356c8972546ef177b73d0aeb)) + + +### Bug Fixes + +* Add privacy manifest ([#334](https://github.com/launchdarkly/ios-client-sdk/issues/334)) ([154fde7](https://github.com/launchdarkly/ios-client-sdk/commit/154fde7e1cae7ed5474f5adf89525f7f1448befc)) +* Ensure anonymous context is valid ([#338](https://github.com/launchdarkly/ios-client-sdk/issues/338)) ([65406cc](https://github.com/launchdarkly/ios-client-sdk/commit/65406cc68b52cc50726d671e19fb804bb52f2a20)) +* Replace simple logger with os_log statements ([#340](https://github.com/launchdarkly/ios-client-sdk/issues/340)) ([7ba4397](https://github.com/launchdarkly/ios-client-sdk/commit/7ba43973e379ce5b057baad5860ed313a016c34b)) + ## [9.3.0](https://github.com/launchdarkly/ios-client-sdk/compare/9.2.1...9.3.0) (2024-01-02) diff --git a/LaunchDarkly.podspec b/LaunchDarkly.podspec index 30c4b2d9..13fb7514 100644 --- a/LaunchDarkly.podspec +++ b/LaunchDarkly.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |ld| ld.name = "LaunchDarkly" - ld.version = "9.3.0" # x-release-please-version + ld.version = "9.4.0" # x-release-please-version ld.summary = "iOS SDK for LaunchDarkly" ld.description = <<-DESC diff --git a/LaunchDarkly/LaunchDarkly/ServiceObjects/EnvironmentReporting/ReportingConsts.swift b/LaunchDarkly/LaunchDarkly/ServiceObjects/EnvironmentReporting/ReportingConsts.swift index 540fe87b..721c195f 100644 --- a/LaunchDarkly/LaunchDarkly/ServiceObjects/EnvironmentReporting/ReportingConsts.swift +++ b/LaunchDarkly/LaunchDarkly/ServiceObjects/EnvironmentReporting/ReportingConsts.swift @@ -1,6 +1,6 @@ import Foundation struct ReportingConsts { - static let sdkVersion = "9.3.0" // x-release-please-version + static let sdkVersion = "9.4.0" // x-release-please-version static let sdkName = "ios-client-sdk" } diff --git a/README.md b/README.md index be701369..6b9e249a 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ To include LaunchDarkly in a Swift package, simply add it to the dependencies se ```swift dependencies: [ - .package(url: "https://github.com/launchdarkly/ios-client-sdk.git", .upToNextMajor(from: "9.3.0")) + .package(url: "https://github.com/launchdarkly/ios-client-sdk.git", .upToNextMajor(from: "9.4.0")) ] ```