diff --git a/NEWS b/NEWS index 62add3b..a00ef9f 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,12 @@ Changes from previous version of pkgconf ======================================== +Changes from 1.0.1 to 1.0.2: +---------------------------- + +* Bug fixes: + - fragments: fix another edge case involving empty tokens being concatenated onto previous tokens (#99) + Changes from 1.0.0 to 1.0.1: ---------------------------- diff --git a/configure.ac b/configure.ac index 68305df..6d0b8ae 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ dnl implied. In no event shall the authors be liable for any damages arising dnl from the use of this software. AC_PREREQ([2.68]) -AC_INIT([pkgconf], [1.0.1], [http://github.com/pkgconf/pkgconf/issues]) +AC_INIT([pkgconf], [1.0.2], [http://github.com/pkgconf/pkgconf/issues]) AC_CONFIG_SRCDIR([main.c]) AC_CONFIG_HEADERS([libpkgconf/config.h]) AC_CHECK_FUNCS([strlcpy strlcat strndup strtok_r])