Skip to content

Commit bb8564b

Browse files
authored
chore(main): release 3.10.0 (#102)
1 parent 6bb72dd commit bb8564b

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"3.9.0"}
1+
{".":"3.10.0"}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [3.10.0](https://github.com/Flagsmith/flagsmith-ios-client/compare/v3.9.0...v3.10.0) (2026-04-15)
4+
5+
6+
### Features
7+
8+
* Send a standard User-Agent: sdk-name/version header ([#104](https://github.com/Flagsmith/flagsmith-ios-client/issues/104)) ([6bb72dd](https://github.com/Flagsmith/flagsmith-ios-client/commit/6bb72ddc7f68c9b99dcb03a145200c12c2668756))
9+
10+
11+
### Other
12+
13+
* Remove amannn/action-semantic-pull-request workflow ([#101](https://github.com/Flagsmith/flagsmith-ios-client/issues/101)) ([c5d8181](https://github.com/Flagsmith/flagsmith-ios-client/commit/c5d818146c19f1fd08450444cd5310964859de82))
14+
315
## [3.9.0](https://github.com/Flagsmith/flagsmith-ios-client/compare/v3.8.4...v3.9.0) (2025-10-30)
416

517

FlagsmithClient.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'FlagsmithClient'
11-
s.version = '3.9.0' # x-release-please-version
11+
s.version = '3.10.0' # x-release-please-version
1212
s.summary = 'iOS Client written in Swift for Flagsmith. Ship features with confidence using feature flags and remote config.'
1313
s.homepage = 'https://github.com/Flagsmith/flagsmith-ios-client'
1414
s.license = { :type => 'MIT', :file => 'LICENSE' }

FlagsmithClient/Classes/Internal/Router.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212

1313
enum Router: Sendable {
1414
// x-release-please-start-version
15-
private static let sdkVersion = "3.9.0"
15+
private static let sdkVersion = "3.10.0"
1616
// x-release-please-end
1717
static let userAgent = "flagsmith-swift-ios-sdk/\(sdkVersion)"
1818

FlagsmithClient/Tests/RouterTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class RouterTests: FlagsmithClientTestCase {
2121
XCTAssertTrue(request.allHTTPHeaderFields?.contains(where: { $0.key == "X-Environment-Key" }) ?? false)
2222
XCTAssertNil(request.httpBody)
2323
// x-release-please-start-version
24-
XCTAssertEqual(request.allHTTPHeaderFields?["User-Agent"], "flagsmith-swift-ios-sdk/3.9.0")
24+
XCTAssertEqual(request.allHTTPHeaderFields?["User-Agent"], "flagsmith-swift-ios-sdk/3.10.0")
2525
// x-release-please-end
2626
}
2727

0 commit comments

Comments
 (0)