From d0b89debdca95c2162f0b1a36a5c7b7a8d294e91 Mon Sep 17 00:00:00 2001 From: Tim Ruehsen Date: Fri, 25 Apr 2014 12:36:59 +0200 Subject: [PATCH] prepared for initial release --- AUTHORS | 4 ++-- NEWS | 4 ++++ configure.ac | 13 ++++++++++--- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index ba6bf51..b1bf772 100644 --- a/AUTHORS +++ b/AUTHORS @@ -7,5 +7,5 @@ took part in discussions or 'just' asked questions. Please drop me a note if you feel you should have been mentioned here. -Tim Ruehsen (Original implementation of libpsl) -Daniel Kahn Gillmor +Tim Ruehsen (Implementation of libpsl) +Daniel Kahn Gillmor (Discussion, Ideas, Organization) diff --git a/NEWS b/NEWS index e69de29..05c0239 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,4 @@ +Copyright (C) 2014 Tim Ruehsen + +25.04.2014 + Initial release V0.2 of libpsl diff --git a/configure.ac b/configure.ac index cb45300..a810230 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_INIT([libpsl], [0.1], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl]) +AC_INIT([libpsl], [0.2], [tim.ruehsen@gmx.de], [libpsl], [http://github.com/rockdaboot/libpsl]) AC_PREREQ([2.59]) AM_INIT_AUTOMAKE([1.10 -Wall no-define]) @@ -54,8 +54,15 @@ AS_IF([ test "$enable_man" != no ], [ # For information on how to properly maintain the library version information, # refer to the libtool manual, section "Updating library version information": # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html -AC_SUBST([LIBPSL_SO_VERSION], [0:0:0]) -AC_SUBST([LIBPSL_API_VERSION], [0.1]) +# +# 1. Start with version information of ‘0:0:0’ for each libtool library. +# 2. Update the version information only immediately before a public release of your software. More frequent updates are unnecessary, and only guarantee that the current interface number gets larger faster. +# 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], [0:1:0]) +AC_SUBST([LIBPSL_API_VERSION], [0.2]) # Check for idn2 AC_CHECK_PROG(HAVE_IDN2, idn2, yes, AC_MSG_ERROR(Cannot find required tool 'idn2'.))