From 114c1be12dbe6ff8d3b9280fb67e02812100d101 Mon Sep 17 00:00:00 2001 From: Julian Brost Date: Mon, 29 Jul 2024 14:38:24 +0200 Subject: [PATCH] Version 0.1.1 --- CHANGELOG.md | 9 +++++++++ internal/version.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d020f6b..52283da6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Icinga Notifications Changelog +## 0.1.1 (2024-07-29) + +This is a small bug fix release with the main change being a fix for logging to the systemd journal. + +* Logging: Fix missing log message fields in systemd journal (#267) +* HTTP Listener: Don't return 500 Internal Server Error for superfluous events (#251) +* Container Images: include git commit in `icinga-notifications --version` when built on GitHub Actions (#260) + + ## 0.1.0 (2024-07-25) Initial release diff --git a/internal/version.go b/internal/version.go index 331ef7f0..30e86fb5 100644 --- a/internal/version.go +++ b/internal/version.go @@ -5,4 +5,4 @@ import "github.com/icinga/icinga-go-library/version" // Version contains version and Git commit information. // // The placeholders are replaced on `git archive` using the `export-subst` attribute. -var Version = version.Version("0.1.0", "$Format:%(describe)$", "$Format:%H$") +var Version = version.Version("0.1.1", "$Format:%(describe)$", "$Format:%H$")