diff --git a/.github/workflows/_kotlin.yml b/.github/workflows/_kotlin.yml index 207dd8b0a..5320856e8 100644 --- a/.github/workflows/_kotlin.yml +++ b/.github/workflows/_kotlin.yml @@ -30,7 +30,7 @@ jobs: contents: write # for updating the release draft env: # mark:next-android-version - RELEASE_NAME: android-client-1.5.5 + RELEASE_NAME: android-client-1.5.6 steps: - uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0 if: "${{ github.event_name == 'workflow_dispatch' && github.ref_name == 'main' }}" @@ -104,7 +104,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # mark:next-android-version - RELEASE_NAME: android-client-1.5.5 + RELEASE_NAME: android-client-1.5.6 run: | export ARTIFACT_PATH="$RUNNER_TEMP/firezone-${RELEASE_NAME}.${{ matrix.package-type }}" cp "${{ matrix.output-path }}" "$ARTIFACT_PATH" diff --git a/kotlin/android/app/build.gradle.kts b/kotlin/android/app/build.gradle.kts index 47dce7fad..7b2aeeecc 100644 --- a/kotlin/android/app/build.gradle.kts +++ b/kotlin/android/app/build.gradle.kts @@ -53,7 +53,7 @@ android { targetSdk = 36 versionCode = (System.currentTimeMillis() / 1000 / 10).toInt() // mark:next-android-version - versionName = "1.5.5" + versionName = "1.5.6" multiDexEnabled = true testInstrumentationRunner = "dev.firezone.android.core.HiltTestRunner" diff --git a/scripts/bump-versions.sh b/scripts/bump-versions.sh index 2b260cc53..4ab1d0f4a 100755 --- a/scripts/bump-versions.sh +++ b/scripts/bump-versions.sh @@ -126,8 +126,8 @@ function apple() { # 6. Run `scripts/bump-versions.sh android` to update the versions in the codebase. # 7. Commit the changes and open a PR. function android() { - current_android_client_version="1.5.4" - next_android_client_version="1.5.5" + current_android_client_version="1.5.5" + next_android_client_version="1.5.6" update_changelog "website/src/components/Changelog/Android.tsx" "$current_android_client_version" find website -type f -name "redirects.js" -exec sed "${SEDARG[@]}" -e '/mark:current-android-version/{n;s/[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}/'"${current_android_client_version}"'/g;}' {} \; diff --git a/website/redirects.js b/website/redirects.js index b560e4ff4..9ef8c5539 100644 --- a/website/redirects.js +++ b/website/redirects.js @@ -29,7 +29,7 @@ module.exports = [ source: "/dl/firezone-client-android/latest", destination: // mark:current-android-version - "https://www.github.com/firezone/firezone/releases/download/android-client-1.5.4/firezone-android-client-1.5.4.apk", + "https://www.github.com/firezone/firezone/releases/download/android-client-1.5.5/firezone-android-client-1.5.5.apk", permanent: false, }, /* diff --git a/website/src/app/api/releases/route.ts b/website/src/app/api/releases/route.ts index c7a38fe0e..d2529e98c 100644 --- a/website/src/app/api/releases/route.ts +++ b/website/src/app/api/releases/route.ts @@ -7,7 +7,7 @@ export async function GET() { // mark:current-apple-version apple: "1.5.8", // mark:current-android-version - android: "1.5.4", + android: "1.5.5", // mark:current-gui-version gui: "1.5.8", // mark:current-headless-version diff --git a/website/src/components/Changelog/Android.tsx b/website/src/components/Changelog/Android.tsx index c6b0f104d..924797eca 100644 --- a/website/src/components/Changelog/Android.tsx +++ b/website/src/components/Changelog/Android.tsx @@ -20,7 +20,8 @@ export default function Android() { return ( {/* When you cut a release, remove any solved issues from the "known issues" lists over in `client-apps`. This must not be done when the issue's PR merges. */} - + + Fixes an issue where the Internet Resource could be briefly active on startup, despite it being disabled. @@ -28,7 +29,7 @@ export default function Android() { Improves reliability by caching DNS responses as per their TTL. - + Fixes a bug that could prevent sign-ins from completing successfully