Bump version and update ChangeLog w/ last fixes before next release

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
This commit is contained in:
Joachim Wiberg 2022-07-31 12:56:50 +02:00
parent 8b513ade8e
commit 0811315f35
2 changed files with 8 additions and 2 deletions

View File

@ -13,6 +13,12 @@ All relevant changes to the project are documented in this file.
- in untrusted kernel messages - in untrusted kernel messages
- Dropped `debian/` directory (moved to separate branch), to ease - Dropped `debian/` directory (moved to separate branch), to ease
re-packaging by downstream re-packaging by downstream
- Major updates to `logger`:
- Support for logging to a remote host, `-h HOST` and `-P PORT`
- Support for logging in RFC3164 format, mostly for remote logging
to syslog servers that do not support RFC5424, `-b`
- Support for overriding hostname `-H NAME`
- Support for custom PID, e.g., a shell scripts PID, `-I PID`
### Fixes ### Fixes
- Fix #52: Prevent over-read when scanning a new-style kernel message. - Fix #52: Prevent over-read when scanning a new-style kernel message.
@ -297,7 +303,7 @@ and a replacement for `syslog.h` to enable new features in RFC5424.
### Changes ### Changes
- Support for true RFC3164 formatted log messages to remote log servers, - Support for true RFC3164 formatted log messages to remote log servers,
including timestamp and hostname. Use `;RFC3161` rule option including timestamp and hostname. Use `;RFC3164` rule option
- Support for RFC5424 from UNIX domain socket, from remote servers and also - Support for RFC5424 from UNIX domain socket, from remote servers and also
to remote servers. Requires new API `syslogp()` to unlock these features to remote servers. Requires new API `syslogp()` to unlock these features
on the UNIX socket. Still compatible with GLIBC/musl/uClibc on the UNIX socket. Still compatible with GLIBC/musl/uClibc

View File

@ -25,7 +25,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE. # SUCH DAMAGE.
AC_INIT([sysklogd], [2.4.1-pre], [https://github.com/troglobit/sysklogd/issues],, AC_INIT([sysklogd], [2.4.1-rc1], [https://github.com/troglobit/sysklogd/issues],,
[https://github.com/troglobit/sysklogd]) [https://github.com/troglobit/sysklogd])
AC_CONFIG_AUX_DIR(aux) AC_CONFIG_AUX_DIR(aux)
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects]) AM_INIT_AUTOMAKE([1.11 foreign subdir-objects])