Release v0.10.0
This commit is contained in:
parent
3bf7275a17
commit
789d7ad132
6
NEWS
6
NEWS
|
@ -1,5 +1,11 @@
|
||||||
Copyright (C) 2014 Tim Rühsen
|
Copyright (C) 2014 Tim Rühsen
|
||||||
|
|
||||||
|
19.09.2025 Release V0.10.0
|
||||||
|
* Code simplified
|
||||||
|
* Less data entries, faster lookups
|
||||||
|
* Add new function psl_suffix_wildcard_count()
|
||||||
|
* Add new helper function psl_builtin_outdated()
|
||||||
|
|
||||||
15.09.2015 Release V0.9.0
|
15.09.2015 Release V0.9.0
|
||||||
* Added semantic checks to PSL entries when generating built-in data
|
* Added semantic checks to PSL entries when generating built-in data
|
||||||
* Fix test suite for TLD exceptions (not used yet in reality)
|
* Fix test suite for TLD exceptions (not used yet in reality)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
AC_INIT([libpsl], [0.9.0], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl])
|
AC_INIT([libpsl], [0.10.0], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl])
|
||||||
AC_PREREQ([2.59])
|
AC_PREREQ([2.59])
|
||||||
AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])
|
AM_INIT_AUTOMAKE([1.10 -Wall no-define foreign])
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ PKG_PROG_PKG_CONFIG
|
||||||
# 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], [2:6:2])
|
AC_SUBST([LIBPSL_SO_VERSION], [3:0:3])
|
||||||
AC_SUBST([LIBPSL_VERSION], $VERSION)
|
AC_SUBST([LIBPSL_VERSION], $VERSION)
|
||||||
|
|
||||||
# Check for enable/disable builtin PSL data
|
# Check for enable/disable builtin PSL data
|
||||||
|
|
Loading…
Reference in New Issue