New cycle

This commit is contained in:
Julien Papasian 2025-11-11 10:55:39 +01:00
parent e9329e0d26
commit 384bc89128
5 changed files with 8 additions and 6 deletions

View file

@ -28,7 +28,7 @@ body:
required: true
- label: The idea Im suggesting is not in the [list of features that will not be implemented](https://github.com/breezy-weather/breezy-weather/blob/main/README.md#features-that-will-not-be-implemented).
required: true
- label: I have updated the app to **[version 6.0.11 or later](https://github.com/breezy-weather/breezy-weather/releases)**. Even if Im getting updates from F-Droid default repo, I dont need to uninstall/reinstall to update.
- label: I have updated the app to **[version 6.0.12 or later](https://github.com/breezy-weather/breezy-weather/releases)**. Even if Im getting updates from F-Droid default repo, I dont need to uninstall/reinstall to update.
required: true
- label: I wrote my request in English, and any screenshot I attached are also in English (language can be changed from Settings > Appearance). I can write in my native language under the English text, if necessary.
required: true

View file

@ -93,7 +93,7 @@ body:
required: true
- label: I checked that my issue is not covered in the [Frequently Asked Questions](https://github.com/breezy-weather/breezy-weather/blob/main/HELP.md) document.
required: true
- label: I have updated the app to **[version 6.0.11 or later](https://github.com/breezy-weather/breezy-weather/releases)** and I can reproduce the issue in this version.
- label: I have updated the app to **[version 6.0.12 or later](https://github.com/breezy-weather/breezy-weather/releases)** and I can reproduce the issue in this version.
required: true
- label: I wrote my request in English, and any screenshot I attached are also in English (language can be changed from Settings > Appearance), unless my issue only happens with a specific language. I can write in my native language under the English text, if necessary.
required: true

View file

@ -13,7 +13,9 @@ The following features are already available in the current branch, but will be
- New broadcast: you can use `org.breezyweather.ACTION_UPDATE_NOTIFIER` (or `org.breezyweather.debug.ACTION_UPDATE_NOTIFIER` with the debug build) to be notified of updated locations (most common use case is coupled with the content provider)
# Version 6.0.12 (not yet released)
# Version 6.0.12 (2025-11-11)
**This is the last release for Android Lollipop (5.0/5.1) users**
**Improvements and fixes**
- Daily/hourly forecast - Ensure the maximum value is always at a minimum defined value to ensure data is put in perspective, and remove threshold lines that werent very useful and cluttering the interface (wind, precipitation, cloud cover)

View file

@ -22,8 +22,8 @@ android {
defaultConfig {
applicationId = "org.breezyweather"
versionCode = 60012
versionName = "6.0.12"
versionCode = 60013
versionName = "6.0.13"
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")

View file

@ -36,7 +36,7 @@ You can omit any of the following properties to let the user configure their own
4) Update versionCode and versionName in `app/build.gradle`.
5) Write changelog in `CHANGELOG.md`.
6) Commit all changes.
7) Tag version beginning with a `v` (example: `git tag v6.0.12 -m "Version 6.0.12"`).
7) Tag version beginning with a `v` (example: `git tag v6.0.13 -m "Version 6.0.13"`).
8) Push with `git push --tags`
9) GitHub action will run and sign the release.
10) Update GitHub release notes draft and publish.