diff --git a/CHANGELOG.md b/CHANGELOG.md index e02ac4a..dafde33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# v0.3.0 (unreleased) +# v0.3.0 (2022-11-19) * Bumped minimum Go version to 1.18. * Switched from `/r0` to `/v3` paths everywhere. @@ -32,7 +32,7 @@ (thanks to [@n-peugnet] in [#386]). * Fixed newlines not working in code blocks with certain syntax highlightings (thanks to [@n-peugnet] in [#387]). -* Fixed rendering more than one reaction of the same type in a single message. +* Fixed rendering more than one reaction of the same type in a single message (thanks to [@n-peugnet] in [#391]). * Fixed line-wrapped messages getting corrupted when receiving a reaction (thanks to [@n-peugnet] in [#397]). diff --git a/deb/DEBIAN/control b/deb/DEBIAN/control index 6478e71..b89759e 100644 --- a/deb/DEBIAN/control +++ b/deb/DEBIAN/control @@ -1,5 +1,5 @@ Package: gomuks -Version: 0.2.4-1 +Version: 0.3.0-1 Section: net Priority: optional Architecture: amd64 diff --git a/gomuks.go b/gomuks.go index 9ad10f6..865a279 100644 --- a/gomuks.go +++ b/gomuks.go @@ -40,7 +40,7 @@ var ( var ( // Version is the version number of gomuks. Changed manually when making a release. - Version = "0.2.4" + Version = "0.3.0" // VersionString is the gomuks version, plus commit information. Filled in init() using the build-time values. VersionString = "" )