hcloud-upload-image/internal/version/version.go
Julian Tölle b328867f6b
chore(main): release 0.3.1 (#48)
🤖 I have created a release *beep* *boop*
---


<details><summary>0.3.1</summary>

##
[0.3.1](https://github.com/apricote/hcloud-upload-image/compare/v0.3.0...v0.3.1)
(2024-12-07)


### Bug Fixes

* **cli:** local install fails because of go.mod replace
([#47](https://github.com/apricote/hcloud-upload-image/issues/47))
([66dc5f7](66dc5f70b6))
</details>

<details><summary>hcloudimages: 0.3.1</summary>

##
[0.3.1](https://github.com/apricote/hcloud-upload-image/compare/hcloudimages/v0.3.0...hcloudimages/v0.3.1)
(2024-12-07)


### Bug Fixes

* **cli:** local install fails because of go.mod replace
([#47](https://github.com/apricote/hcloud-upload-image/issues/47))
([66dc5f7](66dc5f70b6))
</details>

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
2024-12-07 01:57:59 +01:00

19 lines
474 B
Go

package version
var (
// version is a semver version (https://semver.org).
version = "0.3.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
}()
)