Skip to content

Commit

Permalink
Release version 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Oct 5, 2024
1 parent ad02b84 commit 5593cd0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
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.1
### Added
- Added completion commands for suspending and chained commands. ([#553](https://github.com/ajalt/clikt/pull/553))
- Added no-op suspending commands. ([#554](https://github.com/ajalt/clikt/pull/554))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ Clikt is distributed through [Maven Central](https://search.maven.org/artifact/c

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

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

Expand Down
4 changes: 2 additions & 2 deletions docs/migration.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Upgrading to Newer Releases

See the [changelog] for a full list of changes in each release. This guide contains information on
the most significant changes that may require updating to your code.
See the [changelog](changelog.md) for a full list of changes in each release. This guide contains
information on the most significant changes that may require updating to your code.

## Upgrading to 5.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=5.0.0
VERSION_NAME=5.0.1

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

2 comments on commit 5593cd0

@p-schneider
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ajalt there is a small typo in the release name itself.
This commit I'm commenting on is correct and the git tag is also correct, but the display name of that release (in the releases section on github) is accidentially called 5..0.1 instead of 5.0.1
Thank you for your work!

@ajalt
Copy link
Owner Author

@ajalt ajalt commented on 5593cd0 Oct 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed, thank you!

Please sign in to comment.