From a5e6f26cce82898c54a0caa6dda0ab924b806daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Sat, 18 Jul 2020 13:15:00 +0200 Subject: [PATCH] Release V0.21.1 --- NEWS | 8 +++++++- configure.ac | 4 ++-- meson.build | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index dc60d0cb..dc75123a 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,10 @@ -Copyright (C) 2014-2019 Tim Rühsen +Copyright (C) 2014-2020 Tim Rühsen + +18.07.2020 Release V0.21.1 + * Fixing a test due to recent changes in upstream PSL + * Meson build improvements + * Documentation cleanups + * Use semantic versioning for git tags 16.04.2019 Release V0.21.0 * Add -b/--batch to 'psl' to suppress printing the domain diff --git a/configure.ac b/configure.ac index f4464cda..e906a44d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_INIT([libpsl], [0.21.0], [tim.ruehsen@gmx.de], [libpsl], [https://github.com/rockdaboot/libpsl]) +AC_INIT([libpsl], [0.21.1], [tim.ruehsen@gmx.de], [libpsl], [https://github.com/rockdaboot/libpsl]) AC_PREREQ([2.59]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.10 no-define foreign dist-lzip]) @@ -115,7 +115,7 @@ AC_ARG_ENABLE([asan], # 4. If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0. # 5. If any interfaces have been added since the last public release, then increment age. # 6. If any existing interfaces have been removed or changed since the last public release, then set age to 0. -AC_SUBST([LIBPSL_SO_VERSION], [8:2:3]) +AC_SUBST([LIBPSL_SO_VERSION], [8:3:3]) AC_SUBST([LIBPSL_VERSION], $VERSION) # Check for enable/disable runtime PSL data diff --git a/meson.build b/meson.build index 6afa954d..3880d45c 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libpsl', 'c', - version : '0.21.0', + version : '0.21.1', meson_version : '>=0.49.0') # Derived from LIBPSL_SO_VERSION in configure.ac