diff --git a/CHANGELOG.md b/CHANGELOG.md
index 261f37f9..88dae0f0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,11 @@
## Improved
*
+# 1.21.0
+
+## New
+* Drop Support for iOS 11
+
# 1.20.1
## Improved
diff --git a/Cineaste.xcodeproj/project.pbxproj b/Cineaste.xcodeproj/project.pbxproj
index fcdeac70..12b3914e 100644
--- a/Cineaste.xcodeproj/project.pbxproj
+++ b/Cineaste.xcodeproj/project.pbxproj
@@ -1395,7 +1395,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 599;
+ CURRENT_PROJECT_VERSION = 634;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = Cineaste/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
@@ -1418,7 +1418,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 599;
+ CURRENT_PROJECT_VERSION = 634;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = Cineaste/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
diff --git a/Cineaste/Info.plist b/Cineaste/Info.plist
index 5d05c7c8..a3e9937d 100644
--- a/Cineaste/Info.plist
+++ b/Cineaste/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.20.1
+ 1.21.0
CFBundleVersion
- 599
+ 634
ITSAppUsesNonExemptEncryption
LSRequiresIPhoneOS
diff --git a/CineasteSnapshotTests/Info.plist b/CineasteSnapshotTests/Info.plist
index 17cd809d..0aa5c3aa 100644
--- a/CineasteSnapshotTests/Info.plist
+++ b/CineasteSnapshotTests/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.20.1
+ 1.21.0
CFBundleVersion
- 599
+ 634
NSPrincipalClass
CineasteSnapshotTests.XCTestObserver
diff --git a/CineasteTests/Info.plist b/CineasteTests/Info.plist
index 6acce9f5..815dbf76 100644
--- a/CineasteTests/Info.plist
+++ b/CineasteTests/Info.plist
@@ -15,9 +15,9 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 1.20.1
+ 1.21.0
CFBundleVersion
- 599
+ 634
NSPrincipalClass
CineasteTests.XCTestObserver
diff --git a/CineasteUITests/Info.plist b/CineasteUITests/Info.plist
index c6559efd..58506971 100644
--- a/CineasteUITests/Info.plist
+++ b/CineasteUITests/Info.plist
@@ -15,8 +15,8 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 1.20.1
+ 1.21.0
CFBundleVersion
- 599
+ 634
diff --git a/RELEASE.md b/RELEASE.md
index 38b0045c..468df240 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -4,7 +4,7 @@
* Update version number in `Fastfile`
* Run `bundle exec fastlane release` which will automatically...
* set version and build number
- * commit the changes
+ * commit the changes
* tag the commit with version number
* Push latest commit with tag to origin which will automatically...
* trigger GitHub Actions to create a GitHub release with changelog
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index caa80406..f927d083 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -24,7 +24,7 @@ Test_Languages = [
'de-DE'
]
-$version_number_to_set = '1.20.1'
+$version_number_to_set = '1.21.0'
$build_number_to_set = number_of_commits.to_s
$ipaName = "#{ProjectName}-#{$version_number_to_set}-#{$build_number_to_set}"