Skip to content

Commit bcf79c1

Browse files
Update CHANGELOG and Version for 11.7.0
1 parent 5f80782 commit bcf79c1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 11.7.0
2+
- [changed] Refactored the base `DataConnectError` error type to be a protocol instead of an enum and introduced concrete error types `DataConnectInitError`, `DataConnectCodecError`, `DataConnectOperationError`. Note that if you have code using a `switch` on the previous error enum, you will need to update that code. See the [PR] (https://github.com/firebase/data-connect-ios-sdk/pull/42) for a usage example and `DataConnectError.swift` for implementation details.
3+
- [added] Support for partial errors via the above mentioned `DataConnectOperationError`.
4+
15
# 11.6.0-beta
26
- [changed] Dependency on Firebase iOS SDK changed to 'minimum version required' instead of an 'exact version'. This lets apps use the latest version of the Firebase iOS SDK.
37

Sources/Internal/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import GoogleUtilities_Environment
1818

1919
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
2020
struct Version {
21-
static let sdkVersion = "11.6.0-beta"
21+
static let sdkVersion = "11.7.0"
2222

2323
// returns value of form gl-PLATFORM_NAME/PLATFORM_VERSION
2424
static func platformVersionHeader() -> String {

0 commit comments

Comments
 (0)