diff --git a/Configurations/ConfigCommon.xcconfig b/Configurations/ConfigCommon.xcconfig index 72ed29af5..ecc1fa50a 100644 --- a/Configurations/ConfigCommon.xcconfig +++ b/Configurations/ConfigCommon.xcconfig @@ -19,13 +19,13 @@ SPARKLE_NORMALIZE_INSTALLED_APPLICATION_NAME = 0 // These variables must have a space after the '=' too SPARKLE_VERSION_MAJOR = 1 SPARKLE_VERSION_MINOR = 27 -SPARKLE_VERSION_PATCH = 2 +SPARKLE_VERSION_PATCH = 3 // This should be in SemVer format or empty, ie. "-rc.1" // These variables must have a space after the '=' too SPARKLE_VERSION_SUFFIX = // This is now a monotonically increasing ID number, even across prereleases, but let's keep this below 2.0 -CURRENT_PROJECT_VERSION = 1.107 +CURRENT_PROJECT_VERSION = 1.108 MARKETING_VERSION = $(SPARKLE_VERSION_MAJOR).$(SPARKLE_VERSION_MINOR).$(SPARKLE_VERSION_PATCH)$(SPARKLE_VERSION_SUFFIX) diff --git a/Package.swift b/Package.swift index 3ebcbc755..5c115cff6 100644 --- a/Package.swift +++ b/Package.swift @@ -2,10 +2,10 @@ import PackageDescription // Version is technically not required here, SPM doesn't check -let version = "1.27.2" +let version = "1.27.3" // Tag is required to point towards the right asset. SPM requires the tag to follow semantic versioning to be able to resolve it. -let tag = "1.27.2" -let checksum = "7be019bef25f3224099a3f396a9fdb30b2d01561576f971d1d004d99b4716ed4" +let tag = "1.27.3" +let checksum = "f0c6b4e6ffc6269a67b0d4ff254e3e8acfc6b3852db7b9957d4c0a5b39044446" let url = "https://github.com/sparkle-project/Sparkle/releases/download/\(tag)/Sparkle-for-Swift-Package-Manager.zip" let package = Package( diff --git a/Sparkle.podspec b/Sparkle.podspec index b4e50d713..384932f7c 100644 --- a/Sparkle.podspec +++ b/Sparkle.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Sparkle" - s.version = "1.27.2" + s.version = "1.27.3" s.summary = "A software update framework for macOS" s.description = "Sparkle is an easy-to-use software update framework for Cocoa developers." s.homepage = "https://sparkle-project.org"