Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 11.7.2
- [fixed] `DataConnectOperationError` now includes underlying server error messages in the debug description instead of a generic decoding error. [Issue](https://github.com/firebase/firebase-ios-sdk/issues/14945)

# 11.7.1
- [fixed] `AnyValue` type fixes to support decoding values fetched using PostgreSQL `jsonb_build_object`. `AnyValue` now internally stores data as a JSON value / dictionary instead of `Swift.Data`.

Expand Down
8 changes: 6 additions & 2 deletions Sources/Internal/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import GoogleUtilities_Environment

@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
struct Version {
static let sdkVersion = "11.7.1"
static let sdkVersion = "11.7.2"

// returns value of form gl-PLATFORM_NAME/PLATFORM_VERSION
static func platformVersionHeader() -> String {
Expand All @@ -30,7 +30,11 @@ struct Version {

// returns the build time major version of swift
static func swiftVersion() -> String {
#if swift(>=6)
#if swift(>=6.2)
return "6.2"
#elseif swift(>=6.1)
return "6.1"
#elseif swift(>=6)
return "6"
#elseif swift(>=5.10)
return "5.10"
Expand Down
Loading