Bump version

This commit is contained in:
Justin Hawkins 2024-03-16 21:16:49 +10:30
parent d9a979b782
commit b466157cd0
2 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. 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 ## [v1.1.1] - 2023-12-08
- Fix bug where a brand-new config was created with an out-of-date version - Fix bug where a brand-new config was created with an out-of-date version

View File

@ -15,7 +15,7 @@ import (
func main() { func main() {
versionInfo := &version.Manager{ 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) log.Printf("Starting gropple %s - https://github.com/tardisx/gropple", versionInfo.GetInfo().CurrentVersion)