From d57a5aecf24a25b32ec4a74be2f5d0a995a47c4b Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Mon, 8 Jul 2024 10:11:00 -0400 Subject: [PATCH] Move `main` to 1.27.0 The next release will be 1.27.0 and will come off `main`. --- Sources/SwiftProtobuf/Version.swift | 4 ++-- SwiftProtobuf.podspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/SwiftProtobuf/Version.swift b/Sources/SwiftProtobuf/Version.swift index e49b8210f..9e77c6921 100644 --- a/Sources/SwiftProtobuf/Version.swift +++ b/Sources/SwiftProtobuf/Version.swift @@ -17,9 +17,9 @@ import Foundation // Expose version information about the library. public struct Version { /// Major version. - public static let major = 2 + public static let major = 1 /// Minor version. - public static let minor = 0 + public static let minor = 27 /// Revision number. public static let revision = 0 diff --git a/SwiftProtobuf.podspec b/SwiftProtobuf.podspec index a82ae405f..2b062e4df 100644 --- a/SwiftProtobuf.podspec +++ b/SwiftProtobuf.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftProtobuf' - s.version = '2.0.0' + s.version = '1.27.0' s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' } s.summary = 'Swift Protobuf Runtime Library' s.homepage = 'https://github.com/apple/swift-protobuf'