Skip to content

Commit f6bae99

Browse files
committed
Fixed deps
1 parent 60b03eb commit f6bae99

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Package.swift

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:4.2
1+
// swift-tools-version:5.1
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -29,15 +29,15 @@ let package = Package(
2929
// Dependencies declare other packages that this package depends on.
3030
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0"),
3131
.package(url: "https://github.com/apple/swift-nio.git", .exact("2.7.1")),
32-
.package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2")),
3332
// Development
33+
.package(url: "https://github.com/Quick/Nimble.git", .exact("8.0.2")), // dev
3434
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.35.8"), // dev
3535
.package(url: "https://github.com/jpsim/SourceKitten", .exact("0.25.0")), // dev
3636
.package(url: "https://github.com/shibapm/Rocket", from: "0.4.0"), // dev
3737
.package(url: "https://github.com/Realm/SwiftLint", from: "0.35.0"), // dev
3838
.package(url: "https://github.com/eneko/SourceDocs", from: "0.5.1"), // dev
39-
.package(url: "https://github.com/minuscorp/PackageConfig", .branch("master")),
40-
.package(url: "https://github.com/shibapm/Komondor.git", from: "1.0.0"),
39+
.package(url: "https://github.com/minuscorp/PackageConfig", .branch("master")), // dev
40+
.package(url: "https://github.com/shibapm/Komondor.git", from: "1.0.0"), // dev
4141
],
4242
targets: [
4343
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -66,7 +66,10 @@ let package = Package(
6666
"rocket": [
6767
"before": [
6868
"rake docs",
69-
"Scripts/update_changelog.sh",
69+
],
70+
"after": [
71+
"pod lib lint --allow-warnings",
72+
"pod trunk push",
7073
],
7174
],
7275
"komondor": [

0 commit comments

Comments
 (0)