author | Michael Krelin <hacker@klever.net> | 2007-11-21 14:03:23 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-11-21 14:03:23 (UTC) |
commit | 55008364921771a74a1192411583a72cc05adfa6 (patch) (side-by-side diff) | |
tree | 4a2c1ead0b4138b9f670f195de98589d8cb06e1a | |
parent | 8e397698d6a224e36f2b4a188380ec04400aac66 (diff) | |
download | libopkele-55008364921771a74a1192411583a72cc05adfa6.zip libopkele-55008364921771a74a1192411583a72cc05adfa6.tar.gz libopkele-55008364921771a74a1192411583a72cc05adfa6.tar.bz2 |
bumped version and summarized changes in NEWS
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | NEWS.xml | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,34 +1,37 @@ <?xml version="1.0" encoding="us-ascii"?> <news> + <version version="0.3.2" date=""> + <ni>code cleanup for stricter compiler</ni> + </version> <version version="0.3.1" date="November 20th, 2007"> <ni>more robustness improvements in links discovery</ni> <ni>removed dependency on pcre c++ bindings, because there are few of them and not everyone likes all of them</ni> <ni>minor build improvements</ni> </version> <version version="0.3" date="August 9th, 2007"> <ni>fixed canonicalization procedure to be specs-compliant. Note, that the old consumer_t::canonicalize is now called consumer_t::normalize and the canonicalize memeber is now virtual to allow caching layer, not static</ni> <ni>robustness improvement in handling associations expiry</ni> <ni>minor documentation updates</ni> </version> <version version="0.2.1" date="June 24th, 2007"> <ni>open id server invalid signature bugfix</ni> </version> <version version="0.2" date="June 19th, 2007"> <ni>A few robustness improvements and optimizations</ni> <ni>More liberal key/values messages parsing</ni> <ni>Changed unusable --with-pcre++ configure option to --with-pcrepp</ni> </version> <version version="0.1.1" date="January 16th, 2007"> <ni>Fixed a bug in curl errors handling</ni> <ni>added --disable-ssl-verify-host and --disable-ssl-verify-peer options to configure to alter default implementation of consumer's retrieve_links behaviour</ni> <ni>Build fix that eliminates the need to pass --disable-konforka in the absence of it.</ni> </version> <version version="0.1" date="January 12th, 2007"> <ni>OpenID simple registration extension implementation</ni> <ni>OpenID extensions framework</ni> diff --git a/configure.ac b/configure.ac index 1ea8de9..626b263 100644 --- a/configure.ac +++ b/configure.ac @@ -1,33 +1,33 @@ -AC_INIT([libopkele], [0.3.1], [libopkele-bugs@klever.net]) +AC_INIT([libopkele], [0.3.2], [libopkele-bugs@klever.net]) AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) AM_INIT_AUTOMAKE([dist-bzip2]) AC_PROG_INSTALL AC_PROG_CXX AC_PROG_CC AC_PROG_LIBTOOL PKG_PROG_PKG_CONFIG AC_HEADER_STDC AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) AC_MSG_CHECKING([for source tree version]) if headrev=$(cd $srcdir && git rev-parse --verify HEAD 2>/dev/null) ; then PACKAGE_SRC_VERSION="$(cd $srcdir && git describe --tags $headrev)" test "$PACKAGE_SRC_VERSION" = "$PACKAGE_VERSION" \ -o "${PACKAGE_SRC_VERSION#${PACKAGE_VERSION}-}" != "$PACKAGE_SRC_VERSION" || PACKAGE_SRC_VERSION="${PACKAGE_VERSION}:${PACKAGE_SRC_VERSION}" ( cd $srcdir && git diff-index $headrev | read dirt ) && PACKAGE_SRC_VERSION="${PACKAGE_SRC_VERSION}-dirty" else PACKAGE_SRC_VERSION="$PACKAGE_VERSION" fi AC_MSG_RESULT([$PACKAGE_SRC_VERSION]) AC_SUBST([PACKAGE_SRC_VERSION]) AC_DEFINE_UNQUOTED([PACKAGE_SRC_VERSION],["$PACKAGE_SRC_VERSION"],[more or less precise source tree version]) PKG_CHECK_MODULES([OPENSSL],[openssl],,[ AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) ]) WANT_KONFORKA="yes" |