From 61a51ffa06c6516100deaf60ab2480d6b0f54542 Mon Sep 17 00:00:00 2001 From: AJ Date: Sat, 27 Apr 2024 12:42:13 -0700 Subject: [PATCH] Release version 4.4.0 --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 3 +++ README.md | 4 ++-- gradle.properties | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d5d28b8..d6b5d8a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: release: runs-on: macos-latest - if: ${{ github.ref == 'refs/heads/master' && github.repository == 'ajalt/clikt' }} + if: ${{ github.repository == 'ajalt/clikt' }} steps: - uses: actions/checkout@v4 - uses: actions/setup-java@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fe1a9d4..a8197eae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog ## Unreleased +## 4.4.0 +### Added +- Publish `linuxArm64` and `wasmJs` targets. ## 4.3.0 ### Added diff --git a/README.md b/README.md index 1f393206..dac32fd9 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ them with the included [`runsample` script](runsample). Clikt is distributed through [Maven Central](https://search.maven.org/artifact/com.github.ajalt.clikt/clikt). -```groovy +```kotlin dependencies { - implementation("com.github.ajalt.clikt:clikt:4.3.0") + implementation("com.github.ajalt.clikt:clikt:4.4.0") } ``` diff --git a/gradle.properties b/gradle.properties index 6f39ea45..3e983ee0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=4.3.0 +VERSION_NAME=4.4.0 # Silence the compile warning that MPP is experimental kotlin.mpp.stability.nowarn=true