Release V0.21.1
This commit is contained in:
parent
0073dd737d
commit
a5e6f26cce
8
NEWS
8
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
|
16.04.2019 Release V0.21.0
|
||||||
* Add -b/--batch to 'psl' to suppress printing the domain
|
* Add -b/--batch to 'psl' to suppress printing the domain
|
||||||
|
|
|
@ -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_PREREQ([2.59])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AM_INIT_AUTOMAKE([1.10 no-define foreign dist-lzip])
|
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.
|
# 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.
|
# 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.
|
# 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)
|
AC_SUBST([LIBPSL_VERSION], $VERSION)
|
||||||
|
|
||||||
# Check for enable/disable runtime PSL data
|
# Check for enable/disable runtime PSL data
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('libpsl', 'c',
|
project('libpsl', 'c',
|
||||||
version : '0.21.0',
|
version : '0.21.1',
|
||||||
meson_version : '>=0.49.0')
|
meson_version : '>=0.49.0')
|
||||||
|
|
||||||
# Derived from LIBPSL_SO_VERSION in configure.ac
|
# Derived from LIBPSL_SO_VERSION in configure.ac
|
||||||
|
|
Loading…
Reference in New Issue