Skip to content

Commit

Permalink
remove .git suffix from GitHub URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
lhoward committed Dec 13, 2024
1 parent 764564b commit fa5828b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ PlatformTargets = []
PlatformPackageDependencies = [
.package(url: "https://github.com/swhitty/FlyingFox", from: "0.20.0"),
.package(
url: "https://github.com/spacenation/swiftui-sliders.git",
url: "https://github.com/spacenation/swiftui-sliders",
from: "2.1.0"
),
]
Expand Down Expand Up @@ -116,7 +116,7 @@ let CommonPackageDependencies: [Package.Dependency] = [
.package(url: "https://github.com/apple/swift-async-algorithms", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-log", from: "1.6.2"),
.package(url: "https://github.com/apple/swift-system", from: "1.2.1"),
.package(url: "https://github.com/apple/swift-atomics.git", from: "1.2.0"),
.package(url: "https://github.com/apple/swift-atomics", from: "1.2.0"),
.package(url: "https://github.com/PADL/SocketAddress", from: "0.0.1"),
.package(url: "https://github.com/lhoward/AsyncExtensions", from: "0.9.0"),
.package(url: "https://github.com/Flight-School/AnyCodable", from: "0.6.7"),
Expand Down
16 changes: 8 additions & 8 deletions SwiftOCA.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,7 @@
/* Begin XCRemoteSwiftPackageReference section */
D33771402B48D9E9003BD47B /* XCRemoteSwiftPackageReference "AnyCodable" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/Flight-School/AnyCodable.git";
repositoryURL = "https://github.com/Flight-School/AnyCodable";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.6.7;
Expand All @@ -2596,55 +2596,55 @@
};
D36ECA282A5B20480015174A /* XCRemoteSwiftPackageReference "FlyingFox" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/swhitty/FlyingFox.git";
repositoryURL = "https://github.com/swhitty/FlyingFox";
requirement = {
branch = main;
kind = branch;
};
};
D36ECA282A5B20480015174C /* XCRemoteSwiftPackageReference "swift-log" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/apple/swift-log.git";
repositoryURL = "https://github.com/apple/swift-log";
requirement = {
branch = main;
kind = branch;
};
};
D3AD37772BF089CA00F3F713 /* XCRemoteSwiftPackageReference "swift-system" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/apple/swift-system.git";
repositoryURL = "https://github.com/apple/swift-system";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 1.2.1;
};
};
D3CFA35B2CED4D7500CAE537 /* XCRemoteSwiftPackageReference "swift-atomics" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/apple/swift-atomics.git";
repositoryURL = "https://github.com/apple/swift-atomics";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 1.2.0;
};
};
D3E6E1EC2A3ACB0700BF7095 /* XCRemoteSwiftPackageReference "swift-async-algorithms" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/apple/swift-async-algorithms.git";
repositoryURL = "https://github.com/apple/swift-async-algorithms";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.1.0;
};
};
D3E6E2592A3D28DD00BF7095 /* XCRemoteSwiftPackageReference "AsyncExtensions" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/sideeffect-io/AsyncExtensions.git";
repositoryURL = "https://github.com/sideeffect-io/AsyncExtensions";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.5.2;
};
};
D3E6E2842A43B8D000BF7095 /* XCRemoteSwiftPackageReference "swiftui-sliders" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/spacenation/swiftui-sliders.git";
repositoryURL = "https://github.com/spacenation/swiftui-sliders";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 2.0.0;
Expand Down

0 comments on commit fa5828b

Please sign in to comment.