chore(android): release version 1.4.0 (#7649)

Bumps the Android client to the 1.4.0 release.

Tested in Android emulator.
This commit is contained in:
Jamil
2025-01-03 06:45:00 -08:00
committed by GitHub
parent 36cd9a18d2
commit 309914a45d
8 changed files with 11 additions and 10 deletions

View File

@@ -67,7 +67,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# mark:next-android-version
RELEASE_NAME: android-client-1.4.0
RELEASE_NAME: android-client-1.4.1
run: |
export ARTIFACT_PATH="$RUNNER_TEMP/firezone-${RELEASE_NAME}.${{ matrix.package-type }}"
cp "${{ matrix.output-path }}" "$ARTIFACT_PATH"

View File

@@ -59,7 +59,7 @@ jobs:
- release_name: macos-client-1.4.0
config_name: release-drafter-macos-client.yml
# mark:next-android-version
- release_name: android-client-1.4.0
- release_name: android-client-1.4.1
config_name: release-drafter-android-client.yml
steps:

View File

@@ -53,7 +53,7 @@ android {
targetSdk = 35
versionCode = (System.currentTimeMillis() / 1000 / 10).toInt()
// mark:next-android-version
versionName = "1.4.0"
versionName = "1.4.1"
multiDexEnabled = true
testInstrumentationRunner = "dev.firezone.android.core.HiltTestRunner"

2
rust/Cargo.lock generated
View File

@@ -1043,7 +1043,7 @@ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
[[package]]
name = "connlib-client-android"
version = "1.4.0"
version = "1.4.1"
dependencies = [
"android_log-sys",
"anyhow",

View File

@@ -1,7 +1,7 @@
[package]
name = "connlib-client-android"
# mark:next-android-version
version = "1.4.0"
version = "1.4.1"
edition = { workspace = true }
license = { workspace = true }

View File

@@ -19,14 +19,14 @@
# Tracks the current version to use for generating download links and changelogs
current-apple-version = 1.3.9
current-android-version = 1.3.7
current-android-version = 1.4.0
current-gateway-version = 1.4.2
current-gui-version = 1.4.0
current-headless-version = 1.4.0
# Tracks the next version to release for each platform
next-apple-version = 1.4.0
next-android-version = 1.4.0
next-android-version = 1.4.1
next-gateway-version = 1.4.3
next-gui-version = 1.4.1
next-headless-version = 1.4.1

View File

@@ -7,7 +7,7 @@ export async function GET(_req: NextRequest) {
// mark:current-apple-version
apple: "1.3.9",
// mark:current-android-version
android: "1.3.7",
android: "1.4.0",
// mark:current-gui-version
gui: "1.4.0",
// mark:current-headless-version

View File

@@ -11,7 +11,8 @@ export default function Android() {
title="Android"
>
{/* 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. */}
<Unreleased>
<Unreleased></Unreleased>
<Entry version="1.4.0" date={new Date("2025-01-02")}>
<ChangeItem pull="7599">
The Android app is now distributed{" "}
<Link
@@ -40,7 +41,7 @@ export default function Android() {
<ChangeItem pull="7551">
Fixes an issue where large DNS responses were incorrectly discarded.
</ChangeItem>
</Unreleased>
</Entry>
<Entry version="1.3.7" date={new Date("2024-11-08")}>
<ChangeItem pull="7263">
Mitigates a crash in case the maximum packet size is not respected.