From cf561d786ce2cd4b48f067752515aeb69f7d8495 Mon Sep 17 00:00:00 2001 From: Julian Brost Date: Fri, 4 Nov 2022 14:27:25 +0100 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 9 +++++++++ internal/version.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5217cad..0479189c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Icinga DB Changelog +## 1.1.0 (2022-11-10) + +This release adds a tool for migrating history from IDO. Apart from that, +it reduces RAM usage and includes updated dependencies. + +* Add `icingadb-migrate` for migrating IDO history to Icinga DB. #253 #536 #541 +* Reduce RAM usage during full sync. #525 +* Update dependencies. #522 #524 #533 #534 #540 + ## 1.0.0 (2022-06-30) Final release diff --git a/internal/version.go b/internal/version.go index 62947886..7bc3795a 100644 --- a/internal/version.go +++ b/internal/version.go @@ -7,4 +7,4 @@ import ( // Version contains version and Git commit information. // // The placeholders are replaced on `git archive` using the `export-subst` attribute. -var Version = version.Version("1.0.0", "$Format:%(describe)$", "$Format:%H$") +var Version = version.Version("1.1.0", "$Format:%(describe)$", "$Format:%H$")