Skip to content

Commit

Permalink
Release version 1.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fbernutz committed May 15, 2024
1 parent 2bd83bf commit 6ddd023
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 36 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
## Improved
*

# 1.27.0

## Improved
* VoiceOver and Voice Control experience

# 1.26.0

## New
Expand Down
12 changes: 6 additions & 6 deletions Cineaste.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1866,7 +1866,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 733;
CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = MovieReleaseWidgetExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
Expand Down Expand Up @@ -1898,7 +1898,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 733;
CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = MovieReleaseWidgetExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
Expand Down Expand Up @@ -1926,7 +1926,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 733;
CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = SelectMovieIntentExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
Expand Down Expand Up @@ -1954,7 +1954,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 733;
CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = SelectMovieIntentExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
Expand Down Expand Up @@ -2026,7 +2026,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 733;
CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = Cineaste/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -2052,7 +2052,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 733;
CURRENT_PROJECT_VERSION = 737;
DEVELOPMENT_TEAM = 8BRH3DQ7CT;
INFOPLIST_FILE = Cineaste/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand Down
4 changes: 2 additions & 2 deletions Cineaste/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.27.0</string>
<key>CFBundleVersion</key>
<string>733</string>
<string>737</string>
<key>INIntentsSupported</key>
<array>
<string>DynamicMovieSelectionIntent</string>
Expand Down
4 changes: 2 additions & 2 deletions CineasteSnapshotTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.27.0</string>
<key>CFBundleVersion</key>
<string>733</string>
<string>737</string>
<key>NSPrincipalClass</key>
<string>CineasteSnapshotTests.XCTestObserver</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions CineasteTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.27.0</string>
<key>CFBundleVersion</key>
<string>733</string>
<string>737</string>
<key>NSPrincipalClass</key>
<string>CineasteTests.XCTestObserver</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions CineasteUITests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.27.0</string>
<key>CFBundleVersion</key>
<string>733</string>
<string>737</string>
</dict>
</plist>
19 changes: 11 additions & 8 deletions CineasteUITests/ScreenshotsUITests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -182,17 +182,20 @@ extension ScreenshotsUITests {

private func namedSnapshot(_ name: String) {
Task {
var snapshotName = name
await snapshot(snapshotName(for: name), timeWaitingForIdle: 0)
}
}

if app.launchArguments.contains("UICTContentSizeCategoryAccessibilityL") {
snapshotName += "_a11y"
}
private func snapshotName(for name: String) -> String {
var snapshotName = name

if app.launchArguments.contains("UI_TEST_DARK_MODE") {
snapshotName += "_dark"
}
if app.launchArguments.contains("UICTContentSizeCategoryAccessibilityL") {
snapshotName += "_a11y"
}

await snapshot(snapshotName, timeWaitingForIdle: 0)
if app.launchArguments.contains("UI_TEST_DARK_MODE") {
snapshotName += "_dark"
}
return snapshotName
}
}
4 changes: 2 additions & 2 deletions MovieReleaseWidgetExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.27.0</string>
<key>CFBundleVersion</key>
<string>733</string>
<string>737</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
Expand Down
4 changes: 2 additions & 2 deletions SelectMovieIntentExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.26.0</string>
<string>1.27.0</string>
<key>CFBundleVersion</key>
<string>733</string>
<string>737</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
Expand Down
20 changes: 10 additions & 10 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ Scheme_UnitTests = 'UnitTests'
Scheme_SnapshotTests = 'SnapshotTests'
Scheme_UITests = 'UITests'

Test_Device = 'iPhone SE (3rd generation) (17.0)'
Test_Device = 'iPhone SE (3rd generation)'
Test_Devices = [
'iPhone SE (3rd generation) (17.0',
'iPhone 8 Plus',
'iPhone 11 Pro',
'iPhone 11 Pro Max',
'iPad Pro (9.7-inch)',
'iPad Pro (11-inch) (2nd generation)',
'iPad Pro (12.9-inch) (4th generation)'
'iPhone SE (3rd generation)',
'iPhone 15',
'iPhone 15 Plus',
'iPhone 15 Pro Max',
'iPad mini (6th generation)',
'iPad Pro (11-inch) (4th generation)',
'iPad Pro (12.9-inch) (6th generation)'
]
Test_Language = 'en-US'
Test_Languages = [
'en-US',
'de-DE'
]

$version_number_to_set = '1.26.0'
$version_number_to_set = '1.27.0'
$build_number_to_set = number_of_commits.to_s
$ipaName = "#{ProjectName}-#{$version_number_to_set}-#{$build_number_to_set}"

Expand Down Expand Up @@ -78,7 +78,7 @@ lane :screenshots do
scheme: Scheme_UITests,
stop_after_first_error: true,
test_without_building: true

# Enable the following launch arguments to test dynamic type
# , launch_arguments: [
# "-UIPreferredContentSizeCategoryName UICTContentSizeCategoryAccessibilityL",
Expand Down

0 comments on commit 6ddd023

Please sign in to comment.