From e97870581d8e19e5ad4b776e914db01706caa019 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Wed, 1 Sep 2021 11:36:25 +0200 Subject: [PATCH] Update changelog and bump version for v1.2 release Signed-off-by: Joachim Wiberg --- ChangeLog.md | 14 ++++++++++++++ Makefile | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 57261b1..5774c4f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,19 @@ ChangeLog All notable changes to the project are documented in this file. +[v1.2][] - 2021-09-01 +--------------------- + +### Changes +- Add support for wrapping `recvmsg()` and `recv()` syscalls, in + addition to the existing `recvfrom()` wrapper +- Slightly improved test framework, with .log files and overview +- Only check ACL if `accept()` doesn't return error + +### Fixes +- Fix markdown links in changelog diffs +- Fix uninitialized variable in test server + [v1.1][] - 2021-08-26 --------------------- @@ -28,5 +41,6 @@ First public release. Basic `accept()` wrapper which reads allowed interface:port tuples from an `ACL=iface:port;iface2:port` environment variable. +[v1.2]: https://github.com/westermo/accept-guard/compare/v1.1...v1.2 [v1.1]: https://github.com/westermo/accept-guard/compare/v1.0...v1.1 [v1.0]: https://github.com/westermo/accept-guard/compare/v0.0...v1.0 diff --git a/Makefile b/Makefile index a0f7c66..4e1bea8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.1 +VERSION = 1.2 NAME = accept-guard PKG = $(NAME)-$(VERSION) ARCHIVE = $(PKG).tar.gz