mirror of
https://github.com/apricote/hcloud-upload-image.git
synced 2026-01-21 16:21:49 +01:00
🤖 I have created a release *beep* *boop*
---
##
[0.2.1](https://github.com/apricote/hcloud-upload-image/compare/v0.2.0...v0.2.1)
(2024-05-10)
### Bug Fixes
* **cli:** completion requires HCLOUD_TOKEN
([#19](https://github.com/apricote/hcloud-upload-image/issues/19))
([bb2ca48](bb2ca48200))
---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
20 lines
474 B
Go
20 lines
474 B
Go
package version
|
|
|
|
var (
|
|
// version is a semver version (https://semver.org).
|
|
version = "0.2.1" // x-release-please-version
|
|
|
|
// versionPrerelease is a semver version pre-release identifier (https://semver.org).
|
|
//
|
|
// For final releases, we set this to an empty string.
|
|
versionPrerelease = "dev"
|
|
|
|
// Version of the hcloud-upload-image CLI.
|
|
Version = func() string {
|
|
if versionPrerelease != "" {
|
|
return version + "-" + versionPrerelease
|
|
}
|
|
return version
|
|
}()
|
|
)
|