From b466157cd0a4def8d2521e79c67ae6d0572bd4f7 Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Sat, 16 Mar 2024 21:16:49 +1030 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ main.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e8eef4..97908ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [v1.1.2] - 2024-03-16 + +- Fix a crash for a certain pattern of log line + ## [v1.1.1] - 2023-12-08 - Fix bug where a brand-new config was created with an out-of-date version diff --git a/main.go b/main.go index 25eccaa..dcab25a 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( func main() { versionInfo := &version.Manager{ - VersionInfo: version.Info{CurrentVersion: "v1.1.1"}, + VersionInfo: version.Info{CurrentVersion: "v1.1.2"}, } log.Printf("Starting gropple %s - https://github.com/tardisx/gropple", versionInfo.GetInfo().CurrentVersion)