Skip to content

Commit 5960e75

Browse files
committed
14.1.2
1 parent add3cb4 commit 5960e75

File tree

6 files changed

+39
-8
lines changed

6 files changed

+39
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [14.1.2](https://github.com/relatedcode/ProgressHUD/releases/tag/14.1.2)
4+
5+
Released on 2024-05-03.
6+
7+
#### Added
8+
9+
- Added the PrivacyInfo.xcprivacy file.
10+
311
## [14.1.1](https://github.com/relatedcode/ProgressHUD/releases/tag/14.1.1)
412

513
Released on 2024-01-22.

Package.swift

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.3
2+
23
import PackageDescription
34

45
let package = Package(
@@ -9,15 +10,18 @@ let package = Package(
910
products: [
1011
.library(
1112
name: "ProgressHUD",
12-
type: .static,
13-
targets: ["ProgressHUD"]),
13+
targets: ["ProgressHUD"]
14+
),
1415
],
1516
targets: [
1617
.target(
1718
name: "ProgressHUD",
1819
dependencies: [],
1920
path: "./ProgressHUD",
20-
sources: ["Sources"]
21+
sources: ["Sources"],
22+
resources: [
23+
.copy("PrivacyInfo.xcprivacy")
24+
]
2125
),
2226
]
2327
)

ProgressHUD.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ProgressHUD'
3-
s.version = '14.1.1'
3+
s.version = '14.1.2'
44
s.license = 'MIT'
55

66
s.summary = 'A lightweight and easy-to-use Progress HUD for iOS.'
@@ -9,6 +9,7 @@ Pod::Spec.new do |s|
99

1010
s.source = { :git => 'https://github.com/relatedcode/ProgressHUD.git', :tag => s.version }
1111
s.source_files = 'ProgressHUD/Sources/*.swift', 'ProgressHUD/Sources/Animations/*.swift'
12+
s.resource_bundles = {'ProgressHUD' => ['ProgressHUD/Sources/PrivacyInfo.xcprivacy']}
1213

1314
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
1415

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyCollectedDataTypes</key>
6+
<array/>
7+
<key>NSPrivacyAccessedAPITypes</key>
8+
<array/>
9+
<key>NSPrivacyTrackingDomains</key>
10+
<array/>
11+
<key>NSPrivacyTracking</key>
12+
<false/>
13+
</dict>
14+
</plist>

ProgressHUD/app.xcodeproj/project.pbxproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/* Begin PBXBuildFile section */
1010
295B8482248C1C5B003E8AE6 /* ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 295B8480248C1C5B003E8AE6 /* ViewController.xib */; };
1111
295B8483248C1C5B003E8AE6 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 295B8481248C1C5B003E8AE6 /* ViewController.swift */; };
12+
298F5A0B2BE4CA2D00656A68 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 298F5A0A2BE4CA2D00656A68 /* PrivacyInfo.xcprivacy */; };
1213
299876DB248FCB290025E297 /* ProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 299876DA248FCB290025E297 /* ProgressHUD.swift */; };
1314
29A3BDAC2AC6A0810034CAF3 /* ProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29A3BDAA2AC6A0810034CAF3 /* ProgressView.swift */; };
1415
29A3BDAF2AC6A5EF0034CAF3 /* ProgressHUD+LiveIcon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29A3BDAE2AC6A5EF0034CAF3 /* ProgressHUD+LiveIcon.swift */; };
@@ -45,6 +46,7 @@
4546
/* Begin PBXFileReference section */
4647
295B8480248C1C5B003E8AE6 /* ViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ViewController.xib; sourceTree = "<group>"; };
4748
295B8481248C1C5B003E8AE6 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
49+
298F5A0A2BE4CA2D00656A68 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
4850
299876DA248FCB290025E297 /* ProgressHUD.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressHUD.swift; sourceTree = "<group>"; };
4951
29A3BDAA2AC6A0810034CAF3 /* ProgressView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProgressView.swift; sourceTree = "<group>"; };
5052
29A3BDAE2AC6A5EF0034CAF3 /* ProgressHUD+LiveIcon.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "ProgressHUD+LiveIcon.swift"; sourceTree = "<group>"; };
@@ -123,6 +125,7 @@
123125
isa = PBXGroup;
124126
children = (
125127
29783DC82AD7F7AC0017A142 /* Animations */,
128+
298F5A0A2BE4CA2D00656A68 /* PrivacyInfo.xcprivacy */,
126129
299876DA248FCB290025E297 /* ProgressHUD.swift */,
127130
29A3BDB02AC6A7500034CAF3 /* ProgressHUD+Banner.swift */,
128131
29A3BDB22AC6ACA90034CAF3 /* ProgressHUD+Enums.swift */,
@@ -236,6 +239,7 @@
236239
files = (
237240
29D29F041D9A59E4006CA074 /* LaunchScreen.storyboard in Resources */,
238241
295B8482248C1C5B003E8AE6 /* ViewController.xib in Resources */,
242+
298F5A0B2BE4CA2D00656A68 /* PrivacyInfo.xcprivacy in Resources */,
239243
29D29F011D9A59E4006CA074 /* Assets.xcassets in Resources */,
240244
);
241245
runOnlyForDeploymentPostprocessing = 0;
@@ -427,7 +431,7 @@
427431
INFOPLIST_FILE = app/Info.plist;
428432
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
429433
LD_RUNPATH_SEARCH_PATHS = "$(inherited)";
430-
MARKETING_VERSION = 14.1.1;
434+
MARKETING_VERSION = 14.1.2;
431435
PRODUCT_BUNDLE_IDENTIFIER = com.relatedcode.progresshud;
432436
PRODUCT_NAME = "$(TARGET_NAME)";
433437
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -458,7 +462,7 @@
458462
INFOPLIST_FILE = app/Info.plist;
459463
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
460464
LD_RUNPATH_SEARCH_PATHS = "$(inherited)";
461-
MARKETING_VERSION = 14.1.1;
465+
MARKETING_VERSION = 14.1.2;
462466
PRODUCT_BUNDLE_IDENTIFIER = com.relatedcode.progresshud;
463467
PRODUCT_NAME = "$(TARGET_NAME)";
464468
PROVISIONING_PROFILE_SPECIFIER = "";

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.1.1
1+
14.1.2

0 commit comments

Comments
 (0)