Skip to content

Commit c169a57

Browse files
authored
Ignore the abseil privacy manifest and bump the patch version (#1885)
It appears that on macOS when building with Xcode the latest changes have resulted in a error when resolving `swift-protobuf` reported in #1884. This PR ignores the abseil privacy manifest which should fix the issue
1 parent 55e8dfb commit c169a57

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ let package = Package(
5757
.executableTarget(
5858
name: "protoc",
5959
path: "Sources/protobuf",
60+
exclude: [
61+
"abseil/PrivacyInfo.xcprivacy"
62+
],
6063
sources: [
6164
// protoc main
6265
"protobuf/src/google/protobuf/compiler/main_no_generators.cc",
@@ -414,7 +417,7 @@ let package = Package(
414417
swiftSettings: .packageSettings
415418
),
416419
],
417-
swiftLanguageVersions: [.v5],
420+
swiftLanguageModes: [.v5],
418421
cxxLanguageStandard: .gnucxx17
419422
)
420423

Sources/SwiftProtobuf/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public struct Version {
2121
/// Minor version.
2222
public static let minor = 33
2323
/// Revision number.
24-
public static let revision = 2
24+
public static let revision = 3
2525

2626
/// String form of the version number.
2727
public static let versionString = "\(major).\(minor).\(revision)"

SwiftProtobuf.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftProtobuf'
3-
s.version = '1.33.2'
3+
s.version = '1.33.3'
44
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
55
s.summary = 'Swift Protobuf Runtime Library'
66
s.homepage = 'https://github.com/apple/swift-protobuf'

0 commit comments

Comments
 (0)