Skip to content

Commit

Permalink
chore(v9): release 9.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Apr 2, 2024
1 parent 7439997 commit f0c7142
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "9.6.0"
".": "9.6.1"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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

## [9.6.1](https://github.com/launchdarkly/ios-client-sdk/compare/9.6.0...9.6.1) (2024-04-02)


### Bug Fixes

* Add missing privacy manifest resource for SPM ([#360](https://github.com/launchdarkly/ios-client-sdk/issues/360)) ([48f06cf](https://github.com/launchdarkly/ios-client-sdk/commit/48f06cf6025283e00b8375e874c464f9f0cf9d91))
* Add missing privacy tracking fields in manifest ([#362](https://github.com/launchdarkly/ios-client-sdk/issues/362)) ([7439997](https://github.com/launchdarkly/ios-client-sdk/commit/743999791137c4dbab9d2668035fc034bc6a12ce))
* Add objective-c binding for `LDConfig.logger` ([#365](https://github.com/launchdarkly/ios-client-sdk/issues/365)) ([eae8d78](https://github.com/launchdarkly/ios-client-sdk/commit/eae8d78cfaad27b5910d1f00e3f9acfc173d1c7d))
* Deprecate calling `start` without a timeout parameter ([#364](https://github.com/launchdarkly/ios-client-sdk/issues/364)) ([65d88a4](https://github.com/launchdarkly/ios-client-sdk/commit/65d88a451550831feeb882f8a608e9fad2734c8d))
* Use resource_bundle for privacy manifest in podspec ([#361](https://github.com/launchdarkly/ios-client-sdk/issues/361)) ([971a4c4](https://github.com/launchdarkly/ios-client-sdk/commit/971a4c4abb6144c80af5af3b71f4336dde917f20))

## [9.6.0](https://github.com/launchdarkly/ios-client-sdk/compare/9.5.1...9.6.0) (2024-03-20)


Expand Down
2 changes: 1 addition & 1 deletion LaunchDarkly.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pod::Spec.new do |ld|

ld.name = "LaunchDarkly"
ld.version = "9.6.0" # x-release-please-version
ld.version = "9.6.1" # x-release-please-version
ld.summary = "iOS SDK for LaunchDarkly"

ld.description = <<-DESC
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Foundation

struct ReportingConsts {
static let sdkVersion = "9.6.0" // x-release-please-version
static let sdkVersion = "9.6.1" // x-release-please-version
static let sdkName = "ios-client-sdk"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To include LaunchDarkly in a Swift package, simply add it to the dependencies se
<!-- x-release-please-start-version -->
```swift
dependencies: [
.package(url: "https://github.com/launchdarkly/ios-client-sdk.git", .upToNextMajor(from: "9.6.0"))
.package(url: "https://github.com/launchdarkly/ios-client-sdk.git", .upToNextMajor(from: "9.6.1"))
]
```
<!-- x-release-please-end -->
Expand Down

0 comments on commit f0c7142

Please sign in to comment.