From 3fc5aec5fc53090ebfd0e315d9bfdd1442320e98 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sun, 28 Dec 2025 09:56:52 +1100 Subject: [PATCH] 0.1.5 --- CHANGELOG.md | 6 ++++++ debian/changelog | 8 ++++++++ pyproject.toml | 2 +- rpm/enroll.spec | 6 +++++- 4 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a51be14..79e45cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.5 + + * Consolidate logrotate and cron files into their main service/package roles if they exist. + * Standardise on MAX_FILES_CAP in one place + * Manage apt stuff in its own role, not in etc_custom + # 0.1.4 * Attempt to capture more stuff from /etc that might not be attributable to a specific package. This includes common singletons and systemd timers diff --git a/debian/changelog b/debian/changelog index 17b8985..5f3be58 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +enroll (0.1.5) unstable; urgency=medium + + * Consolidate logrotate and cron files into their main service/package roles if they exist. + * Standardise on MAX_FILES_CAP in one place + * Manage apt stuff in its own role, not in etc_custom + + -- Miguel Jacq Sun, 28 Dec 2025 10:00:00 +1100 + enroll (0.1.4) unstable; urgency=medium * Attempt to capture more stuff from /etc that might not be attributable to a specific package. This includes common singletons and systemd timers diff --git a/pyproject.toml b/pyproject.toml index f1f2420..3aa01d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "enroll" -version = "0.1.4" +version = "0.1.5" description = "Enroll a server's running state retrospectively into Ansible" authors = ["Miguel Jacq "] license = "GPL-3.0-or-later" diff --git a/rpm/enroll.spec b/rpm/enroll.spec index 707dc10..ed0a3c9 100644 --- a/rpm/enroll.spec +++ b/rpm/enroll.spec @@ -1,4 +1,4 @@ -%global upstream_version 0.1.4 +%global upstream_version 0.1.5 Name: enroll Version: %{upstream_version} @@ -43,6 +43,10 @@ Enroll a server's running state retrospectively into Ansible. %{_bindir}/enroll %changelog +* Sun Dec 28 2025 Miguel Jacq - %{version}-%{release} +- Consolidate logrotate and cron files into their main service/package roles if they exist. +- Standardise on MAX_FILES_CAP in one place +- Manage apt stuff in its own role, not in etc_custom * Sat Dec 27 2025 Miguel Jacq - %{version}-%{release} - Attempt to capture more stuff from /etc that might not be attributable to a specific package. This includes common singletons and systemd timers - Avoid duplicate apt data in package-specific roles.