Skip to content

Commit edcb4c6

Browse files
committed
Use gradle version catalogs for dependencies
1 parent a77bd52 commit edcb4c6

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.1.0
2+
3+
Released 2024-02-05
4+
5+
- Work-around test failures with multiple FirebaseApp instances
6+
17
## 0.0.3
28

39
Released 2024-01-09

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ let package = Package(
2727
.library(name: "SkipFirebaseStorage", targets: ["SkipFirebaseStorage"]),
2828
],
2929
dependencies: [
30-
.package(url: "https://source.skip.tools/skip.git", from: "0.7.42"),
31-
.package(url: "https://source.skip.tools/skip-foundation.git", from: "0.4.0"),
32-
.package(url: "https://source.skip.tools/skip-model.git", from: "0.4.0"),
30+
.package(url: "https://source.skip.tools/skip.git", from: "0.8.0"),
31+
.package(url: "https://source.skip.tools/skip-foundation.git", from: "0.5.0"),
32+
.package(url: "https://source.skip.tools/skip-model.git", from: "0.5.0"),
3333
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", from: "10.17.0")
3434
],
3535
targets: [
Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
# Configuration file for https://skip.tools project
22
#
33
# Kotlin dependencies and Gradle build options for this module can be configured here
4+
settings:
5+
contents:
6+
- block: 'dependencyResolutionManagement'
7+
contents:
8+
- block: 'versionCatalogs'
9+
contents:
10+
- block: 'create("libs")'
11+
contents:
12+
- 'version("firebase", "32.7.1")'
13+
- 'library("firebase-bom", "com.google.firebase", "firebase-bom").versionRef("firebase")'
14+
415
build:
516
contents:
617
- block: 'dependencies'
718
contents:
8-
- 'implementation(platform("com.google.firebase:firebase-bom:32.7.0"))'
19+
- 'implementation(platform(libs.firebase.bom))'
920
- 'implementation("com.google.firebase:firebase-installations")'
1021
- 'implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services")'

0 commit comments

Comments
 (0)