From 24f0fd36c410059955ae452432745cc615f297df Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Sun, 21 Feb 2021 16:15:55 +0100 Subject: [PATCH] Prepare for v2.2.2 release Signed-off-by: Joachim Wiberg --- ChangeLog.md | 18 ++++++++++++++++++ configure.ac | 2 +- debian/changelog | 3 +++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 01dac32..7b70253 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,23 @@ Change Log All relevant changes to the project are documented in this file. + +[v2.2.2][UNRELEASED] +----------------------- + +Bug fix release. + +### Changes +- Load and reload timezone, with `tzset()`, on init/SIGHUP +- Logging from remote servers enabled by default in `syslogd.service` + use `/etc/default/syslogd` to disable +- Initial Debian/Ubuntu packaging + +### Fixes +- Fix issue with parsing /dev/kmsg time, off by one error +- Fix spelling issues in syslogd and man pages, found by lintian + + [v2.2.1][] - 2021-01-30 ----------------------- @@ -359,6 +376,7 @@ and a replacement for `syslog.h` to enable new features in RFC5424. [UNRELEASED]: https://github.com/troglobit/sysklogd/compare/v2.2.1...HEAD +[v2.2.2]: https://github.com/troglobit/sysklogd/compare/v2.2.1...v2.2.2 [v2.2.1]: https://github.com/troglobit/sysklogd/compare/v2.2.0...v2.2.1 [v2.2.0]: https://github.com/troglobit/sysklogd/compare/v2.1.2...v2.2.0 [v2.1.2]: https://github.com/troglobit/sysklogd/compare/v2.1.1...v2.1.2 diff --git a/configure.ac b/configure.ac index 3ff8a77..c9e881f 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. -AC_INIT([sysklogd], [2.2.1], [https://github.com/troglobit/sysklogd/issues],, +AC_INIT([sysklogd], [2.2.2-rc1], [https://github.com/troglobit/sysklogd/issues],, [https://github.com/troglobit/sysklogd]) AC_CONFIG_AUX_DIR(aux) AM_INIT_AUTOMAKE([1.11 foreign subdir-objects]) diff --git a/debian/changelog b/debian/changelog index 8e75314..7920f42 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,8 @@ sysklogd (2.2.2) stable; urgency=low * Initial release. + * Fix issue with parsing /dev/kmsg time + * Fix spelling issues in syslogd and man pages, found by lintian + * Load and reload timezone, with tzset(), on init/SIGHUP. -- Joachim Wiberg Sun, 21 Feb 2021 13:43:49 +0100