Skip to content

Commit bf73432

Browse files
committed
Release version 5.0.0
1 parent e650bbe commit bf73432

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616
distribution: 'zulu'
1717
java-version: 17
1818
- uses: gradle/actions/setup-gradle@v4
19-
with:
20-
# disable configuration cache due to https://github.com/gradle/gradle/issues/22779
21-
arguments: publishToMavenCentral --no-configuration-cache
19+
# disable configuration cache due to https://github.com/gradle/gradle/issues/22779
20+
- run: ./gradlew publishToMavenCentral --no-configuration-cache
2221
env:
2322
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.ORG_GRADLE_PROJECT_mavenCentralPassword }}
2423
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ORG_GRADLE_PROJECT_signingInMemoryKey }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## 5.0.0
46
### Added
57
- Publish `iosArm64` and `iosX64` targets.
68
- Added `NoSuchArgument` exception that is thrown when too many arguments were given on the command line. Previously, a less specific `UsageError` was thrown instead.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ Clikt is distributed through [Maven Central](https://search.maven.org/artifact/c
6060

6161
```kotlin
6262
dependencies {
63-
implementation("com.github.ajalt.clikt:clikt:4.4.0")
63+
implementation("com.github.ajalt.clikt:clikt:5.0.0")
64+
65+
// optional support for rendering markdown in help messages
66+
implementation("com.github.ajalt.clikt:clikt-markdown:5.0.0")
6467
}
6568
```
6669

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=4.4.0
1+
VERSION_NAME=5.0.0
22

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

0 commit comments

Comments
 (0)