Skip to content

Commit 50782be

Browse files
committed
Use latest stable release-toolkit, 13.3.1, with screenshots fix
1 parent 2ad927a commit 50782be

File tree

2 files changed

+23
-26
lines changed

2 files changed

+23
-26
lines changed

Gemfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ gem 'fastlane-plugin-sentry', '~> 1.0'
1515
# This comment avoids typing to switch to a development version for testing.
1616
#
1717
# gem 'fastlane-plugin-wpmreleasetoolkit', git: '[email protected]:wordpress-mobile/release-toolkit', branch: ''
18-
gem 'fastlane-plugin-wpmreleasetoolkit', git: 'https://github.com/wordpress-mobile/release-toolkit', ref: '2d5c486c86a9dc2c6798e04880b4508ae37f2296'
19-
# gem 'fastlane-plugin-wpmreleasetoolkit', '~> 13.0'
18+
#
19+
# The '>= 13.3.1' aftre '~> 13.3' ensures that we resolve to any version compatible with 13.3 starting from 13.3.1
20+
# Using '~> 13.3.1' would constrain us to 13.3.2, 13.3.3, etc. without ever going up to 13.4
21+
# We need 13.3.1 because of a fix in screenshots generation we depend upon.
22+
gem 'fastlane-plugin-wpmreleasetoolkit', '~> 13.3', '>= 13.3.1'
2023
gem 'rake', '~> 12.3'
2124
gem 'rubocop', '~> 1.65'
2225
gem 'rubocop-rake', '~> 0.6'

Gemfile.lock

Lines changed: 18 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,3 @@
1-
GIT
2-
remote: https://github.com/wordpress-mobile/release-toolkit
3-
revision: 2d5c486c86a9dc2c6798e04880b4508ae37f2296
4-
ref: 2d5c486c86a9dc2c6798e04880b4508ae37f2296
5-
specs:
6-
fastlane-plugin-wpmreleasetoolkit (13.3.0)
7-
activesupport (>= 6.1.7.1)
8-
buildkit (~> 1.5)
9-
chroma (= 0.2.0)
10-
diffy (~> 3.3)
11-
fastlane (~> 2.213)
12-
git (~> 1.3)
13-
google-cloud-storage (~> 1.31)
14-
java-properties (~> 0.3.0)
15-
nokogiri (~> 1.11)
16-
octokit (~> 6.1)
17-
parallel (~> 1.14)
18-
plist (~> 3.1)
19-
progress_bar (~> 1.3)
20-
rake (>= 12.3, < 14.0)
21-
rake-compiler (~> 1.0)
22-
xcodeproj (~> 1.22)
23-
241
GEM
252
remote: https://rubygems.org/
263
specs:
@@ -193,6 +170,23 @@ GEM
193170
google-apis-firebaseappdistribution_v1alpha (~> 0.2.0)
194171
fastlane-plugin-sentry (1.25.1)
195172
os (~> 1.1, >= 1.1.4)
173+
fastlane-plugin-wpmreleasetoolkit (13.3.1)
174+
activesupport (>= 6.1.7.1)
175+
buildkit (~> 1.5)
176+
chroma (= 0.2.0)
177+
diffy (~> 3.3)
178+
fastlane (~> 2.213)
179+
git (~> 1.3)
180+
google-cloud-storage (~> 1.31)
181+
java-properties (~> 0.3.0)
182+
nokogiri (~> 1.11)
183+
octokit (~> 6.1)
184+
parallel (~> 1.14)
185+
plist (~> 3.1)
186+
progress_bar (~> 1.3)
187+
rake (>= 12.3, < 14.0)
188+
rake-compiler (~> 1.0)
189+
xcodeproj (~> 1.22)
196190
fastlane-sirp (1.0.0)
197191
sysrandom (~> 1.0)
198192
gh_inspector (1.1.3)
@@ -375,7 +369,7 @@ DEPENDENCIES
375369
fastlane (~> 2.217)
376370
fastlane-plugin-firebase_app_distribution (~> 0.10)
377371
fastlane-plugin-sentry (~> 1.0)
378-
fastlane-plugin-wpmreleasetoolkit!
372+
fastlane-plugin-wpmreleasetoolkit (~> 13.3, >= 13.3.1)
379373
rake (~> 12.3)
380374
rmagick (~> 4.1)
381375
rubocop (~> 1.65)

0 commit comments

Comments
 (0)