Skip to content

Commit e930830

Browse files
Merge pull request #112 from tus/release/2.2.0
Updating changelog and version identifiers for 2.2.0 release.
2 parents 8709abe + 4f4b5e4 commit e930830

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## Upcoming version
3+
## 2.2.0
4+
5+
- [MINOR] The example project now uses native iOS examples with PHPickerViewController and UIImagePickerController.
6+
- [MINOR] A http 300 status error is considered as an error. Ideally this will be a retry, but an automated retry mechanism is not yet in place.
7+
8+
- [PATCH] The example project runs again
9+
- [PATCH] Added missing UIKit imports
10+
- [PATCH] Fix canceling upload task
11+
- [PATCH] The example project doesn't rely on third party dependencies anymore.
412

5-
- [MINOR] Example project runs again
6-
- [MINOR] Removed POD dependencies in lockfile

Example/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- TUSKit (2.1.0)
2+
- TUSKit (2.2.0)
33

44
DEPENDENCIES:
55
- TUSKit (from `../`)

Example/TUSKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,7 @@
492492
INFOPLIST_FILE = TUSKit/Info.plist;
493493
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
494494
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
495+
MARKETING_VERSION = 2.2.0;
495496
MODULE_NAME = ExampleApp;
496497
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
497498
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -509,6 +510,7 @@
509510
INFOPLIST_FILE = TUSKit/Info.plist;
510511
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
511512
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
513+
MARKETING_VERSION = 2.2.0;
512514
MODULE_NAME = ExampleApp;
513515
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
514516
PRODUCT_NAME = "$(TARGET_NAME)";

Example/TUSKit/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>NSPhotoLibraryUsageDescription</key>
6-
<string>To Access Photos</string>
75
<key>CFBundleDevelopmentRegion</key>
86
<string>en</string>
97
<key>CFBundleExecutable</key>
@@ -17,13 +15,15 @@
1715
<key>CFBundlePackageType</key>
1816
<string>APPL</string>
1917
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
2119
<key>CFBundleSignature</key>
2220
<string>????</string>
2321
<key>CFBundleVersion</key>
2422
<string>1</string>
2523
<key>LSRequiresIPhoneOS</key>
2624
<true/>
25+
<key>NSPhotoLibraryUsageDescription</key>
26+
<string>To Access Photos</string>
2727
<key>UILaunchStoryboardName</key>
2828
<string>LaunchScreen</string>
2929
<key>UIMainStoryboardFile</key>

TUSKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'TUSKit'
11-
s.version = '2.1.0'
11+
s.version = '2.2.0'
1212
s.summary = 'A rewrite of TUSKit, in Swift'
1313
s.swift_version = '5.0'
1414

0 commit comments

Comments
 (0)