diff --git a/CHANGELOG.md b/CHANGELOG.md index e9868d31d..ec35d041d 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 + +- `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 ### 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