Update ChangeLog and bump version for upcoming v2.5.0 release

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2023-04-22 08:59:35 +02:00
parent 218a032557
commit 5c33df4ca0
2 changed files with 22 additions and 2 deletions

View File

@ -4,6 +4,24 @@ Change Log
All relevant changes to the project are documented in this file.
[v2.5.0][UNRELEASED]
-----------------------
### Changes
- Issue #59: initial port to NuttX, contributed by Xiaomi
- Issue #61: add support for `-c` and `-cc` to disable log compression.
A single `-c` disables compression for pipes, another `-c` (or `-cc`)
disables compression for all other log targets
- The default `syslog.conf` now logs debug messages again (disabled in
v2.4.0) due to problems (confusion) reported in the field
- Dropped not recommend `KillMode=process` from systemd unit file
### Fixes
- Issue #60: document how to set side-wide permissions on log files
- Issue #62: early log messages lost when running under systemd, found
by Wind River Systems, including initial fix
[v2.4.4][] - 2022-08-14
-----------------------
@ -525,7 +543,9 @@ and a replacement for `syslog.h` to enable new features in RFC5424.
- Several bugfixes and improvements, please refer to the .c files
[UNRELEASED]: https://github.com/troglobit/sysklogd/compare/v2.4.3...HEAD
[UNRELEASED]: https://github.com/troglobit/sysklogd/compare/v2.4.4...HEAD
[v2.5.0]: https://github.com/troglobit/sysklogd/compare/v2.4.4...v2.5.0
[v2.4.4]: https://github.com/troglobit/sysklogd/compare/v2.4.3...v2.4.4
[v2.4.3]: https://github.com/troglobit/sysklogd/compare/v2.4.2...v2.4.3
[v2.4.2]: https://github.com/troglobit/sysklogd/compare/v2.4.1...v2.4.2
[v2.4.1]: https://github.com/troglobit/sysklogd/compare/v2.4.0...v2.4.1

View File

@ -25,7 +25,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
AC_INIT([sysklogd], [2.4.4], [https://github.com/troglobit/sysklogd/issues],,
AC_INIT([sysklogd], [2.5.0-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])