Skip to content

Commit 42a512b

Browse files
committed
fix: 패키지 manifest 경고 제거
1 parent 6c584d8 commit 42a512b

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

Application/DevLogInfra/DevLogInfra.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -767,8 +767,8 @@
767767
isa = XCRemoteSwiftPackageReference;
768768
repositoryURL = "https://github.com/google/GoogleSignIn-iOS";
769769
requirement = {
770-
kind = upToNextMajorVersion;
771-
minimumVersion = 9.0.0;
770+
kind = revision;
771+
revision = 02616ac6b469e8f00212436d2cac16e6efad7954;
772772
};
773773
};
774774
/* End XCRemoteSwiftPackageReference section */

DevLog.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tuist/ProjectDescriptionHelpers/Project+Packages.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@ import ProjectDescription
33
public enum DevLogPackages {
44
public static let swiftLintPackage: Package = .package(
55
url: "https://github.com/realm/SwiftLint",
6-
from: "0.62.1"
6+
.upToNextMajor(from: "0.62.1")
77
)
88
public static let markdownUIPackage: Package = .package(
99
url: "https://github.com/gonzalezreal/swift-markdown-ui.git",
10-
from: "2.4.1"
10+
.upToNextMajor(from: "2.4.1")
1111
)
1212
public static let swiftCollectionsPackage: Package = .package(
1313
url: "https://github.com/apple/swift-collections.git",
14-
from: "1.3.0"
14+
.upToNextMajor(from: "1.3.0")
1515
)
1616
public static let firebasePackage: Package = .package(
1717
url: "https://github.com/firebase/firebase-ios-sdk",
18-
from: "11.15.0"
18+
.upToNextMajor(from: "11.15.0")
1919
)
2020
public static let googleSignInPackage: Package = .package(
2121
url: "https://github.com/google/GoogleSignIn-iOS",
22-
from: "9.0.0"
22+
.revision("02616ac6b469e8f00212436d2cac16e6efad7954")
2323
)
2424
public static let nexaPackage: Package = .package(
2525
url: "https://github.com/opficdev/Nexa",
26-
from: "1.1.0"
26+
.upToNextMajor(from: "1.1.0")
2727
)
2828

2929
public static let swiftLintPlugin: TargetDependency = .package(

0 commit comments

Comments
 (0)