Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: echo '::set-output name=WAS_CHANGED::'$(test -n "$(git log --format=%H --since='24 hours ago')" && echo 'true' || echo 'false')

spm-package-resolved:
runs-on: macos-14
runs-on: macos-15
outputs:
cache_key: ${{ steps.generate_cache_key.outputs.cache_key }}
env:
Expand All @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Xcode
run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer
- name: Generate Swift Package.resolved
id: swift_package_resolve
run: |
Expand All @@ -58,7 +58,7 @@ jobs:
os: [macos-15]
# GitHub actions' runners do not include visionOS. https://github.com/actions/runner-images/issues/10559
target: [iOS, macOS, tvOS, catalyst]
xcode: [Xcode_16.2]
xcode: [Xcode_16.4]
runs-on: ${{ matrix.os }}
env:
FIREBASECI_USE_LATEST_GOOGLEAPPMEASUREMENT: 1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 11.10.0
- [added] Starting FDC Tools from Xcode sets up a template Firebase Data Connect project in the Xcode project folder. See the `README.md` for an updated `Getting Started` section.

# 11.9.0
- [added] Start Firebase Data Connect Schema and Query design tools from Xcode. See the `README.md` for more information.

Expand Down
2 changes: 1 addition & 1 deletion 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.9.0"
static let sdkVersion = "11.10.0"

// returns value of form gl-PLATFORM_NAME/PLATFORM_VERSION
static func platformVersionHeader() -> String {
Expand Down
Loading