-rw-r--r-- | NEWS.xml | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,18 +1,21 @@ | |||
1 | <?xml version="1.0" encoding="us-ascii"?> | 1 | <?xml version="1.0" encoding="us-ascii"?> |
2 | <news> | 2 | <news> |
3 | <version version="0.3.2" date=""> | ||
4 | <ni>code cleanup for stricter compiler</ni> | ||
5 | </version> | ||
3 | <version version="0.3.1" date="November 20th, 2007"> | 6 | <version version="0.3.1" date="November 20th, 2007"> |
4 | <ni>more robustness improvements in links discovery</ni> | 7 | <ni>more robustness improvements in links discovery</ni> |
5 | <ni>removed dependency on pcre c++ bindings, because there are few of them and | 8 | <ni>removed dependency on pcre c++ bindings, because there are few of them and |
6 | not everyone likes all of them</ni> | 9 | not everyone likes all of them</ni> |
7 | <ni>minor build improvements</ni> | 10 | <ni>minor build improvements</ni> |
8 | </version> | 11 | </version> |
9 | <version version="0.3" date="August 9th, 2007"> | 12 | <version version="0.3" date="August 9th, 2007"> |
10 | <ni>fixed canonicalization procedure to be specs-compliant. Note, that the old | 13 | <ni>fixed canonicalization procedure to be specs-compliant. Note, that the old |
11 | consumer_t::canonicalize is now called consumer_t::normalize and the | 14 | consumer_t::canonicalize is now called consumer_t::normalize and the |
12 | canonicalize memeber is now virtual to allow caching layer, not static</ni> | 15 | canonicalize memeber is now virtual to allow caching layer, not static</ni> |
13 | <ni>robustness improvement in handling associations expiry</ni> | 16 | <ni>robustness improvement in handling associations expiry</ni> |
14 | <ni>minor documentation updates</ni> | 17 | <ni>minor documentation updates</ni> |
15 | </version> | 18 | </version> |
16 | <version version="0.2.1" date="June 24th, 2007"> | 19 | <version version="0.2.1" date="June 24th, 2007"> |
17 | <ni>open id server invalid signature bugfix</ni> | 20 | <ni>open id server invalid signature bugfix</ni> |
18 | </version> | 21 | </version> |
diff --git a/configure.ac b/configure.ac index 1ea8de9..626b263 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,17 +1,17 @@ | |||
1 | AC_INIT([libopkele], [0.3.1], [libopkele-bugs@klever.net]) | 1 | AC_INIT([libopkele], [0.3.2], [libopkele-bugs@klever.net]) |
2 | AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) | 2 | AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) |
3 | AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) | 3 | AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) |
4 | AM_INIT_AUTOMAKE([dist-bzip2]) | 4 | AM_INIT_AUTOMAKE([dist-bzip2]) |
5 | 5 | ||
6 | AC_PROG_INSTALL | 6 | AC_PROG_INSTALL |
7 | AC_PROG_CXX | 7 | AC_PROG_CXX |
8 | AC_PROG_CC | 8 | AC_PROG_CC |
9 | AC_PROG_LIBTOOL | 9 | AC_PROG_LIBTOOL |
10 | PKG_PROG_PKG_CONFIG | 10 | PKG_PROG_PKG_CONFIG |
11 | 11 | ||
12 | AC_HEADER_STDC | 12 | AC_HEADER_STDC |
13 | 13 | ||
14 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | 14 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) |
15 | 15 | ||
16 | AC_MSG_CHECKING([for source tree version]) | 16 | AC_MSG_CHECKING([for source tree version]) |
17 | if headrev=$(cd $srcdir && git rev-parse --verify HEAD 2>/dev/null) ; then | 17 | if headrev=$(cd $srcdir && git rev-parse --verify HEAD 2>/dev/null) ; then |