Skip to content

Commit 4c13000

Browse files
committed
Merge branch 'main' into release
2 parents e792306 + 3c7d93b commit 4c13000

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

Package.swift

+2-12
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,15 @@ let package = Package(
1111
.iOS(.v16)
1212
],
1313
products: [
14-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1514
.library(
1615
name: "Keychain",
1716
targets: ["Keychain"]),
1817
],
1918
dependencies: [
20-
// Dependencies declare other packages that this package depends on.
21-
// .package(url: /* package url */, from: "1.0.0"),
2219
.package(url: "https://github.com/OperatorFoundation/KeychainMacOS", branch: "release"),
23-
.package(url: "https://github.com/OperatorFoundation/KeychainTypes", branch: "release"),
20+
.package(url: "https://github.com/OperatorFoundation/KeychainTypes", from: "1.0.0"),
2421
],
2522
targets: [
26-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
27-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2823
.target(
2924
name: "Keychain",
3025
dependencies: ["KeychainMacOS", "KeychainTypes"]),
@@ -38,20 +33,15 @@ let package = Package(
3833
let package = Package(
3934
name: "Keychain",
4035
products: [
41-
// Products define the executables and libraries a package produces, and make them visible to other packages.
4236
.library(
4337
name: "Keychain",
4438
targets: ["Keychain"]),
4539
],
4640
dependencies: [
47-
// Dependencies declare other packages that this package depends on.
48-
// .package(url: /* package url */, from: "1.0.0"),
4941
.package(url: "https://github.com/OperatorFoundation/KeychainLinux", branch: "release"),
50-
.package(url: "https://github.com/OperatorFoundation/KeychainTypes", branch: "release"),
42+
.package(url: "https://github.com/OperatorFoundation/KeychainTypes", from: "1.0.0"),
5143
],
5244
targets: [
53-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
54-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
5545
.target(
5646
name: "Keychain",
5747
dependencies: [

0 commit comments

Comments
 (0)