From b3bb164cb1322163010713c961a77a75a12654bc Mon Sep 17 00:00:00 2001 From: Mishal Shah Date: Thu, 9 Oct 2025 11:04:39 -0700 Subject: [PATCH] Drop the `-dev` from the Swiftly version --- Sources/SwiftlyCore/SwiftlyCore.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftlyCore/SwiftlyCore.swift b/Sources/SwiftlyCore/SwiftlyCore.swift index a78add9c..68bd72c2 100644 --- a/Sources/SwiftlyCore/SwiftlyCore.swift +++ b/Sources/SwiftlyCore/SwiftlyCore.swift @@ -2,7 +2,7 @@ import Foundation import SwiftlyWebsiteAPI import SystemPackage -public let version = SwiftlyVersion(major: 1, minor: 1, patch: 0, suffix: "dev") +public let version = SwiftlyVersion(major: 1, minor: 1, patch: 0) /// Protocol defining a handler for information swiftly intends to print to stdout. /// This is currently only used to intercept print statements for testing.