From c034ae0ae15fc41c6ed2561d53683df5351d5c96 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Thu, 26 Aug 2021 15:12:16 +0200 Subject: [PATCH] Update changelog and bump version for v1.1 release Signed-off-by: Joachim Wiberg --- ChangeLog.md | 6 ++++-- Makefile | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 33dbc9d..7c6f816 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,14 +4,16 @@ ChangeLog All notable changes to the project are documented in this file. -[v1.1][] - UNRELEASED +[v1.1][] - 2021-08-26 --------------------- ### Changes +- Add support for UDP services by wrapping `recvfrom()` +- Add support for IPv6 - Scope ACL environment variable with `ACCEPT_GUARD_` prefix to avoid clashing with other uses of ACL on the system. Incompatible change! - Simplify build system slightly -- Add basic IPv4 TCP test to verify accept guard, based on `unshare` +- Add basic test suite to verify accept guard, based on `unshare` - Replace unsafe `strncpy()` with safer version that NUL terminates. In a world of systemd named interfaces we are always at `IFNAMSIZ` diff --git a/Makefile b/Makefile index 85f7f31..711ea64 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.1-beta1 +VERSION = 1.1 NAME = accept-guard PKG = $(NAME)-$(VERSION) ARCHIVE = $(PKG).tar.gz