Skip to content

Commit 51be6bd

Browse files
authored
Merge branch 'main' into feature/actor-isolated
2 parents 5542cb0 + 8f3fc96 commit 51be6bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+531
-275
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ playground.xcworkspace
5454
# you should judge for yourself, the pros and cons are mentioned at:
5555
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
5656
#
57-
# Pods/
57+
Pods/
5858
#
5959
# Add this line if you want to avoid checking in source code from the Xcode workspace
60-
# *.xcworkspace
60+
*.xcworkspace
6161

6262
# Carthage
6363
#

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
x.y.z Release Notes (yyyy-MM-dd)
22
=============================================================
33

4+
2.7.0 Release Notes (2024-04-06)
5+
=============================================================
6+
7+
## Added
8+
9+
* Set minimum version to iOS 11. ([#571](https://github.com/TimOliver/TOCropViewController/pull/571))
10+
* A `PrivacyInfo.xcprivacy` file to the resource bundle in order to be compliant with Apple's new privacy requirements. ([#569](https://github.com/TimOliver/TOCropViewController/pull/569))
11+
* A new aspect ratio setting of 16:6. ([#557](https://github.com/TimOliver/TOCropViewController/pull/557))
12+
* Ukranian localization. ([#529](https://github.com/TimOliver/TOCropViewController/pull/529))
13+
14+
## Enchancements
15+
16+
* Updated project for Xcode 15. ([#571](https://github.com/TimOliver/TOCropViewController/pull/571))
17+
* Exposed `reverseContentLayout` as an external property. ([#568](https://github.com/TimOliver/TOCropViewController/pull/568))
18+
* Exposed `cropView` as an external property. ([#532](https://github.com/TimOliver/TOCropViewController/pull/532))
19+
* Added a way to revert back to the original aspect ratio after selecting a custom ratio from the list. ([#543](https://github.com/TimOliver/TOCropViewController/pull/543))
20+
21+
## Fixed
22+
23+
* A deprecation warning when trying to detect the current device's idiom. (([#543](https://github.com/TimOliver/TOCropViewController/pull/543))
24+
* Added in a variety of properties that were available in `TOCropViewController` but not `CropViewController`. (([#541](https://github.com/TimOliver/TOCropViewController/pull/541))
25+
26+
427
2.6.1 Release Notes (2022-01-23)
528
=============================================================
629

CropViewController.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = 'CropViewController'
3-
s.version = '2.6.1'
3+
s.version = '2.7.0'
44
s.license = { :type => 'MIT', :file => 'LICENSE' }
55
s.summary = 'A Swift view controller that enables cropping and rotating of UIImage objects.'
66
s.homepage = 'https://github.com/TimOliver/TOCropViewController'
77
s.author = 'Tim Oliver'
88
s.source = { :git => 'https://github.com/TimOliver/TOCropViewController.git', :tag => s.version }
9-
s.platform = :ios, '8.0'
9+
s.platform = :ios, '11.0'
1010
s.source_files = 'Swift/CropViewController/**/*.{h,swift}', 'Objective-C/TOCropViewController/**/*.{h,m}'
1111
s.exclude_files = 'Objective-C/TOCropViewController/include/**/*.h'
1212
s.resource_bundles = {
13-
'TOCropViewControllerBundle' => ['Objective-C/TOCropViewController/**/*.lproj']
13+
'TOCropViewControllerBundle' => ['Objective-C/TOCropViewController/**/*.{lproj,xcprivacy}']
1414
}
1515
s.requires_arc = true
1616
s.swift_version = '5.0'

0 commit comments

Comments
 (0)