From 82d4ca4d19f420f93fd6580d2bfea5cbc4db1993 Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Thu, 25 Jun 2026 14:45:39 -0400 Subject: [PATCH 1/2] Bumped to version 14.8.0 --- CHANGELOG.md | 10 ++++++++-- Gemfile.lock | 2 +- lib/fastlane/plugin/wpmreleasetoolkit/version.rb | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9868d31d..95df147a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,7 @@ _None_ ### New Features -- Added `find_or_create_pull_request` action and `GithubHelper#find_pull_request`: returns the URL of the open Pull Request for a head branch, creating one only if none exists yet. Useful for "rolling" automations (e.g. a daily translations or dependency-update job) that force-push the same head branch on every run. [#733] -- Added `ContinuousBuildCodeFormatter`, which derives an Android Play Store `versionCode` for a "continuous trunk" release model as `(major * 10 + minor) * 10^build_digits + build_number` (default `build_digits: 6`). It encodes a high-cardinality, monotonically increasing build number (e.g. a Buildkite build number) that `DerivedBuildCodeFormatter` cannot hold, validates that `minor <= 9`, and guards against exceeding the Play Store's maximum `versionCode`. [#735] +_None_ ### Bug Fixes @@ -21,6 +20,13 @@ _None_ _None_ +## 14.8.0 + +### New Features + +- Added `find_or_create_pull_request` action and `GithubHelper#find_pull_request`: returns the URL of the open Pull Request for a head branch, creating one only if none exists yet. Useful for "rolling" automations (e.g. a daily translations or dependency-update job) that force-push the same head branch on every run. [#733] +- Added `ContinuousBuildCodeFormatter`, which derives an Android Play Store `versionCode` for a "continuous trunk" release model as `(major * 10 + minor) * 10^build_digits + build_number` (default `build_digits: 6`). It encodes a high-cardinality, monotonically increasing build number (e.g. a Buildkite build number) that `DerivedBuildCodeFormatter` cannot hold, validates that `minor <= 9`, and guards against exceeding the Play Store's maximum `versionCode`. [#735] + ## 14.7.0 ### New Features diff --git a/Gemfile.lock b/Gemfile.lock index 646aba26c..b0c1d353b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - fastlane-plugin-wpmreleasetoolkit (14.7.0) + fastlane-plugin-wpmreleasetoolkit (14.8.0) buildkit (~> 1.5) chroma (= 0.2.0) diffy (~> 3.3) diff --git a/lib/fastlane/plugin/wpmreleasetoolkit/version.rb b/lib/fastlane/plugin/wpmreleasetoolkit/version.rb index c69e1fdae..1bc7b5132 100644 --- a/lib/fastlane/plugin/wpmreleasetoolkit/version.rb +++ b/lib/fastlane/plugin/wpmreleasetoolkit/version.rb @@ -3,6 +3,6 @@ module Fastlane module Wpmreleasetoolkit NAME = 'fastlane-plugin-wpmreleasetoolkit' - VERSION = '14.7.0' + VERSION = '14.8.0' end end From 61f911802d8272168548e90e6632c9fe64b0c26f Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 26 Jun 2026 10:23:44 +1000 Subject: [PATCH 2/2] Make changelog entries shorter than AI-generated ones Co-authored-by: Gio Lodi --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95df147a5..ec35d041d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,8 +24,8 @@ _None_ ### New Features -- Added `find_or_create_pull_request` action and `GithubHelper#find_pull_request`: returns the URL of the open Pull Request for a head branch, creating one only if none exists yet. Useful for "rolling" automations (e.g. a daily translations or dependency-update job) that force-push the same head branch on every run. [#733] -- Added `ContinuousBuildCodeFormatter`, which derives an Android Play Store `versionCode` for a "continuous trunk" release model as `(major * 10 + minor) * 10^build_digits + build_number` (default `build_digits: 6`). It encodes a high-cardinality, monotonically increasing build number (e.g. a Buildkite build number) that `DerivedBuildCodeFormatter` cannot hold, validates that `minor <= 9`, and guards against exceeding the Play Store's maximum `versionCode`. [#735] +- `find_or_create_pull_request` action: returns the URL of the open Pull Request for a head branch, creating one only if none exists yet. [#733] +- `ContinuousBuildCodeFormatter`: derives an Android Play Store `versionCode` for a "continuous trunk" release model as `(major * 10 + minor) * 10^build_digits + build_number` (default `build_digits: 6`). [#735] ## 14.7.0