From 4616f33d50e5e5c1de90af818f28ec815e5008bc Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 16 Jul 2024 11:06:27 +0300 Subject: [PATCH] Bump version to 0.3.1 --- CHANGELOG.md | 8 ++++++++ deb/DEBIAN/control | 2 +- gomuks.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dafde33..0da579a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/deb/DEBIAN/control b/deb/DEBIAN/control index b89759e..2bfcbc2 100644 --- a/deb/DEBIAN/control +++ b/deb/DEBIAN/control @@ -1,5 +1,5 @@ Package: gomuks -Version: 0.3.0-1 +Version: 0.3.1-1 Section: net Priority: optional Architecture: amd64 diff --git a/gomuks.go b/gomuks.go index a68a699..392944f 100644 --- a/gomuks.go +++ b/gomuks.go @@ -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 = "" )