From 07765f7445619bdb3590df4062a0ae286f04ca31 Mon Sep 17 00:00:00 2001 From: Paul Toffoloni <69189821+ptoffy@users.noreply.github.com> Date: Tue, 27 Feb 2024 23:36:17 +0100 Subject: [PATCH] Update Publish to main (#95) --- Package.resolved | 4 ++-- Package.swift | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Package.resolved b/Package.resolved index 15e7875..5bc9d06 100644 --- a/Package.resolved +++ b/Package.resolved @@ -59,8 +59,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/johnsundell/publish.git", "state" : { - "revision" : "1c8ad00d39c985cb5d497153241a2f1b654e0d40", - "version" : "0.9.0" + "branch" : "master", + "revision" : "58e943047882a5a6d8135ae2711be8ba7fba57c4" } }, { diff --git a/Package.swift b/Package.swift index 6ad832a..26fc806 100644 --- a/Package.swift +++ b/Package.swift @@ -9,10 +9,10 @@ let package = Package( .executable( name: "Blog", targets: ["Blog"] - ) + ), ], dependencies: [ - .package(url: "https://github.com/johnsundell/publish.git", from: "0.8.0"), + .package(url: "https://github.com/johnsundell/publish.git", branch: "master"), .package(url: "https://github.com/alexito4/ReadingTimePublishPlugin.git", from: "0.3.0"), .package(url: "https://github.com/vapor/design.git", branch: "main"), ], @@ -24,6 +24,6 @@ let package = Package( .product(name: "ReadingTimePublishPlugin", package: "ReadingTimePublishPlugin"), .product(name: "VaporDesign", package: "design"), ] - ) + ), ] )