From fd0fd33f7175729ef045ab29d6995c83a12f2d1a Mon Sep 17 00:00:00 2001 From: Zane Schepke Date: Sat, 8 Nov 2025 20:23:09 -0500 Subject: [PATCH] chore: release v4.1.6 --- .github/workflows/publish.yml | 2 +- buildSrc/src/main/kotlin/Constants.kt | 4 ++-- fastlane/metadata/android/en-US/changelogs/40106.txt | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/40106.txt diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fa7041b6..aee60577 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -124,7 +124,7 @@ jobs: - name: Set version release notes if: ${{ github.event_name == 'push' || inputs.release_type == 'release' }} run: | - VERSION_CODE=$(grep "const val VERSION_CODE" buildSrc/src/main/kotlin/Constants.kt | awk '{print $5}') + VERSION_CODE=$(sed -nE 's/.*const val VERSION_CODE[[:space:]]*=[[:space:]]*([0-9]+).*/\1/p' buildSrc/src/main/kotlin/Constants.kt) RELEASE_NOTES="$(cat ${{ github.workspace }}/fastlane/metadata/android/en-US/changelogs/${VERSION_CODE}.txt || echo "No changelog found for ${VERSION_CODE}")" echo "RELEASE_NOTES<> $GITHUB_ENV echo "$RELEASE_NOTES" >> $GITHUB_ENV diff --git a/buildSrc/src/main/kotlin/Constants.kt b/buildSrc/src/main/kotlin/Constants.kt index 1df66860..dc71fe97 100644 --- a/buildSrc/src/main/kotlin/Constants.kt +++ b/buildSrc/src/main/kotlin/Constants.kt @@ -1,6 +1,6 @@ object Constants { - const val VERSION_NAME = "4.1.5" - const val VERSION_CODE = 40105 + const val VERSION_NAME = "4.1.6" + const val VERSION_CODE = 40106 const val TARGET_SDK = 36 const val MIN_SDK = 26 const val APP_ID = "com.zaneschepke.wireguardautotunnel" diff --git a/fastlane/metadata/android/en-US/changelogs/40106.txt b/fastlane/metadata/android/en-US/changelogs/40106.txt new file mode 100644 index 00000000..1e5a75ba --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40106.txt @@ -0,0 +1,3 @@ +What's new: +- Auto-tunnel regression bugfix +- Resource usage bugfix for kill switch mode \ No newline at end of file