Release v0.6.0
This commit is contained in:
parent
8f48b7845f
commit
7690e5498a
6
NEWS
6
NEWS
|
@ -1,5 +1,11 @@
|
||||||
Copyright (C) 2014 Tim Rühsen
|
Copyright (C) 2014 Tim Rühsen
|
||||||
|
|
||||||
|
28.10.2014 Release V0.6.0
|
||||||
|
* added support for IP addresses in psl_is_cookie_domain_acceptable()
|
||||||
|
* removed qsort_r() for compatibility
|
||||||
|
* check for alloca.h before including
|
||||||
|
* include effective_tld_names.dat of date 27.10.2014
|
||||||
|
|
||||||
03.08.2014 Release V0.5.1
|
03.08.2014 Release V0.5.1
|
||||||
* fix ASCII check for architectures where char <> signed char
|
* fix ASCII check for architectures where char <> signed char
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
AC_INIT([libpsl], [0.5.1], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl])
|
AC_INIT([libpsl], [0.6.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])
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ AS_IF([ test "$enable_man" != no ], [
|
||||||
# 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:2:2])
|
AC_SUBST([LIBPSL_SO_VERSION], [2:3:2])
|
||||||
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