From 7354a50c4885ca3240ed5cd04ed36f14622c5385 Mon Sep 17 00:00:00 2001 From: Tim Ruehsen Date: Mon, 23 Jun 2014 12:12:54 +0200 Subject: [PATCH] Release V0.4.0 --- AUTHORS | 4 +++- NEWS | 9 +++++++++ configure.ac | 6 +++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index b1bf772..562d9b7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,4 +8,6 @@ Please drop me a note if you feel you should have been mentioned here. Tim Ruehsen (Implementation of libpsl) -Daniel Kahn Gillmor (Discussion, Ideas, Organization) +Daniel Kahn Gillmor (Discussion, Ideas, Organization, Code) +Daniel Stenberg (Discussion, Ideas) +Darshit Shah (Patching Wget to work with libpsl) diff --git a/NEWS b/NEWS index 8323009..df6d258 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ Copyright (C) 2014 Tim Ruehsen +23.06.2014 Release V0.4.0 + * depend on libicu for punycode, utf-8 and lowercase conversions + * added function psl_str_to_utf8lower() + * fixed locale issues + * introducing psl_error_t for error codes + defines + * removed redundant code from psl2c.c + * updated docs + * psl utility reads from stdin if no argument specified + 10.06.2014 Release V0.3.1 * link psl utility dynamically * fix output of psl_filename() diff --git a/configure.ac b/configure.ac index ca49b20..f89b1e1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_INIT([libpsl], [0.3.1], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl]) +AC_INIT([libpsl], [0.4.0], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl]) AC_PREREQ([2.59]) AM_INIT_AUTOMAKE([1.10 -Wall no-define]) @@ -62,8 +62,8 @@ AS_IF([ test "$enable_man" != no ], [ # 3. If the library source code has changed at all since the last update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’). # 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 interfaces have been removed or changed since the last public release, then set age to 0. -AC_SUBST([LIBPSL_SO_VERSION], [1:1:1]) +# 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:0:2]) AC_SUBST([LIBPSL_VERSION], $VERSION) # Check for libicu