Skip to content

Commit

Permalink
Release version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Sep 15, 2024
1 parent e650bbe commit 4609e41
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ jobs:
distribution: 'zulu'
java-version: 17
- uses: gradle/actions/setup-gradle@v4
with:
# disable configuration cache due to https://github.com/gradle/gradle/issues/22779
arguments: publishToMavenCentral --no-configuration-cache
# disable configuration cache due to https://github.com/gradle/gradle/issues/22779
- run: publishToMavenCentral --no-configuration-cache
env:
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralPassword }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKey }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## Unreleased

## 5.0.0
### Added
- Publish `iosArm64` and `iosX64` targets.
- Added `NoSuchArgument` exception that is thrown when too many arguments were given on the command line. Previously, a less specific `UsageError` was thrown instead.
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ Clikt is distributed through [Maven Central](https://search.maven.org/artifact/c

```kotlin
dependencies {
implementation("com.github.ajalt.clikt:clikt:4.4.0")
implementation("com.github.ajalt.clikt:clikt:5.0.0")

// optional support for rendering markdown in help messages
implementation("com.github.ajalt.clikt:clikt-markdown:5.0.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=4.4.0
VERSION_NAME=5.0.0

# Silence the compile warning that MPP is experimental
kotlin.mpp.stability.nowarn=true
Expand Down

0 comments on commit 4609e41

Please sign in to comment.