Bump version to 0.3.1

This commit is contained in:
Tulir Asokan 2024-07-16 11:06:27 +03:00
parent be2842c551
commit 4616f33d50
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
# v0.3.1 (2024-07-16)
* Bumped minimum Go version to 1.21.
* Added support for authenticated media.
* Added `/powerlevel` command for managing power levels.
* Disabled logging by default.
* Changed default log directory to `~/.local/state/gomuks` on Linux.
# v0.3.0 (2022-11-19)
* Bumped minimum Go version to 1.18.

View file

@ -1,5 +1,5 @@
Package: gomuks
Version: 0.3.0-1
Version: 0.3.1-1
Section: net
Priority: optional
Architecture: amd64

View file

@ -43,7 +43,7 @@ var (
var (
// Version is the version number of gomuks. Changed manually when making a release.
Version = "0.3.0"
Version = "0.3.1"
// VersionString is the gomuks version, plus commit information. Filled in init() using the build-time values.
VersionString = ""
)