mirror of
https://github.com/apricote/hcloud-upload-image.git
synced 2026-01-13 13:21:01 +00:00
🤖 I have created a release *beep* *boop* --- ## [0.2.0](https://github.com/apricote/hcloud-upload-image/compare/v0.1.1...v0.2.0) (2024-05-09) ### Features * packaging for deb, rpm, apk, aur ([#17](https://github.com/apricote/hcloud-upload-image/issues/17)) ([139761c](139761cc28)) * upload local disk images ([#15](https://github.com/apricote/hcloud-upload-image/issues/15)) ([fcea3e3](fcea3e3c6e)) * upload xz compressed images ([#16](https://github.com/apricote/hcloud-upload-image/issues/16)) ([1c943e4](1c943e4480)) ### Bug Fixes * update user-agent in CLI ([#5](https://github.com/apricote/hcloud-upload-image/issues/5)) ([b17857c](b17857c1fe)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
19 lines
474 B
Go
19 lines
474 B
Go
package version
|
|
|
|
var (
|
|
// version is a semver version (https://semver.org).
|
|
version = "0.2.0" // 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
|
|
}()
|
|
)
|