Skip to content

Commit ca24eef

Browse files
authored
Release 6.1.1 (#1178)
1 parent ee7efcc commit ca24eef

File tree

3 files changed

+27
-19
lines changed

3 files changed

+27
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ The changelog for **SwifterSwift**. Also see the [releases](https://github.com/S
44

55
## Upcoming Release
66

7+
## [v6.1.1](https://github.com/SwifterSwift/SwifterSwift/releases/tag/6.1.1)
8+
### Added
9+
- **Cocoapods**
10+
- Added the privacy manifest to Cocoapods. [#1178](https://github.com/SwifterSwift/SwifterSwift/pull/1178) by [guykogus](https://github.com/guykogus)
11+
712
## [v6.1.0](https://github.com/SwifterSwift/SwifterSwift/releases/tag/6.1.0)
813
### Deprecated
914
- **UIImageView**
1015
- `blurred(withStyle:)` should have copied the image view and blurred the new instance, but instead it performed the same functionality as `blur(withStyle:)`, making the outcome unexpected as well as being obsolete. [#1161](https://github.com/SwifterSwift/SwifterSwift/pull/1161) by [guykogus](https://github.com/guykogus)
1116

1217
### Added
1318
- **Swift Package Manager**
14-
- Added a privacy manifest to comply with Apple's requirements regarding [Describing use of required reason API](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api). [#1176](https://github.com/SwifterSwift/SwifterSwift/pull/1161) by [guykogus](https://github.com/guykogus)
19+
- Added a privacy manifest to comply with Apple's requirements regarding [Describing use of required reason API](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api). [#1176](https://github.com/SwifterSwift/SwifterSwift/pull/1176) by [guykogus](https://github.com/guykogus)
1520
- **Measurement**
1621
- Added `+=`, `-=`, `*=`, `/=` to add, subtract, multiply and divide measurements. [#1162](https://github.com/SwifterSwift/SwifterSwift/pull/1162) by [Roman Podymov](https://github.com/RomanPodymov)
1722
- **Sequence**

SwifterSwift.podspec

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwifterSwift'
3-
s.version = '6.1.0'
3+
s.version = '6.1.1'
44
s.summary = 'A handy collection of more than 500 native Swift extensions to boost your productivity.'
55
s.description = <<-DESC
66
SwifterSwift is a collection of over 500 native Swift extensions, with handy methods, syntactic sugar, and performance improvements for wide range of primitive data types, UIKit and Cocoa classes –over 500 in 1– for iOS, macOS, tvOS and watchOS.
@@ -25,42 +25,45 @@ Pod::Spec.new do |s|
2525

2626
# SwiftStdlib Extensions
2727
s.subspec 'SwiftStdlib' do |sp|
28-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/SwiftStdlib/*.swift'
28+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/SwiftStdlib/*.swift'
2929
end
3030

3131
# Foundation Extensions
3232
s.subspec 'Foundation' do |sp|
33-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/Foundation/*.swift'
33+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/Foundation/*.swift'
34+
sp.resource_bundles = {
35+
'SwifterSwift_Privacy' => 'Sources/SwifterSwift/Resources/PrivacyInfo.xcprivacy'
36+
}
3437
end
3538

3639
# UIKit Extensions
3740
s.subspec 'UIKit' do |sp|
38-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/UIKit/*.swift'
41+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/UIKit/*.swift'
3942
end
4043

4144
# AppKit Extensions
4245
s.subspec 'AppKit' do |sp|
43-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/AppKit/*.swift'
46+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/AppKit/*.swift'
4447
end
4548

4649
# CoreGraphics Extensions
4750
s.subspec 'CoreGraphics' do |sp|
48-
sp.source_files = 'Sources/SwifterSwift/CoreGraphics/*.swift'
51+
sp.source_files = 'Sources/SwifterSwift/CoreGraphics/*.swift'
4952
end
5053

5154
# CoreLocation Extensions
5255
s.subspec 'CoreLocation' do |sp|
53-
sp.source_files = 'Sources/SwifterSwift/CoreLocation/*.swift'
56+
sp.source_files = 'Sources/SwifterSwift/CoreLocation/*.swift'
5457
end
5558

5659
# CoreAnimation Extensions
5760
s.subspec 'CoreAnimation' do |sp|
58-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/CoreAnimation/*.swift'
61+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/CoreAnimation/*.swift'
5962
end
6063

6164
# CryptoKit Extensions
6265
s.subspec 'CryptoKit' do |sp|
63-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/CryptoKit/*.swift'
66+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/CryptoKit/*.swift'
6467
end
6568

6669
# MapKit Extensions
@@ -74,7 +77,7 @@ Pod::Spec.new do |s|
7477
end
7578

7679
s.subspec 'SceneKit' do |sp|
77-
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/SceneKit/*.swift'
80+
sp.source_files = 'Sources/SwifterSwift/Shared/*.swift', 'Sources/SwifterSwift/SceneKit/*.swift'
7881
end
7982

8083
# StoreKit Extensions

SwifterSwift.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3085,7 +3085,7 @@
30853085
"@executable_path/Frameworks",
30863086
"@loader_path/Frameworks",
30873087
);
3088-
MARKETING_VERSION = 6.1.0;
3088+
MARKETING_VERSION = 6.1.1;
30893089
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
30903090
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
30913091
MTL_ENABLE_DEBUG_INFO = YES;
@@ -3162,7 +3162,7 @@
31623162
"@executable_path/Frameworks",
31633163
"@loader_path/Frameworks",
31643164
);
3165-
MARKETING_VERSION = 6.1.0;
3165+
MARKETING_VERSION = 6.1.1;
31663166
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
31673167
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
31683168
MTL_ENABLE_DEBUG_INFO = NO;
@@ -3245,7 +3245,7 @@
32453245
"@executable_path/Frameworks",
32463246
"@loader_path/Frameworks",
32473247
);
3248-
MARKETING_VERSION = 6.1.0;
3248+
MARKETING_VERSION = 6.1.1;
32493249
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
32503250
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
32513251
MTL_ENABLE_DEBUG_INFO = YES;
@@ -3322,7 +3322,7 @@
33223322
"@executable_path/Frameworks",
33233323
"@loader_path/Frameworks",
33243324
);
3325-
MARKETING_VERSION = 6.1.0;
3325+
MARKETING_VERSION = 6.1.1;
33263326
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
33273327
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
33283328
MTL_ENABLE_DEBUG_INFO = NO;
@@ -3406,7 +3406,7 @@
34063406
"@executable_path/Frameworks",
34073407
"@loader_path/Frameworks",
34083408
);
3409-
MARKETING_VERSION = 6.1.0;
3409+
MARKETING_VERSION = 6.1.1;
34103410
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
34113411
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
34123412
MTL_ENABLE_DEBUG_INFO = YES;
@@ -3484,7 +3484,7 @@
34843484
"@executable_path/Frameworks",
34853485
"@loader_path/Frameworks",
34863486
);
3487-
MARKETING_VERSION = 6.1.0;
3487+
MARKETING_VERSION = 6.1.1;
34883488
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
34893489
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
34903490
MTL_ENABLE_DEBUG_INFO = NO;
@@ -3570,7 +3570,7 @@
35703570
"@executable_path/../Frameworks",
35713571
"@loader_path/Frameworks",
35723572
);
3573-
MARKETING_VERSION = 6.1.0;
3573+
MARKETING_VERSION = 6.1.1;
35743574
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
35753575
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
35763576
MTL_ENABLE_DEBUG_INFO = YES;
@@ -3649,7 +3649,7 @@
36493649
"@executable_path/../Frameworks",
36503650
"@loader_path/Frameworks",
36513651
);
3652-
MARKETING_VERSION = 6.1.0;
3652+
MARKETING_VERSION = 6.1.1;
36533653
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
36543654
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
36553655
MTL_ENABLE_DEBUG_INFO = NO;

0 commit comments

Comments
 (0)