author | Michael Krelin <hacker@klever.net> | 2009-12-22 22:37:28 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2009-12-22 22:37:28 (UTC) |
commit | 3ad15ad20d08d45a2a077d8f8711ec5d915d2c40 (patch) (unidiff) | |
tree | 557e27277ce01a51a22461f836841fbf6ebd2b94 | |
parent | d597166bcf3072e6e0dac58bd1edf2bdd79025b3 (diff) | |
download | libopkele-3ad15ad20d08d45a2a077d8f8711ec5d915d2c40.zip libopkele-3ad15ad20d08d45a2a077d8f8711ec5d915d2c40.tar.gz libopkele-3ad15ad20d08d45a2a077d8f8711ec5d915d2c40.tar.bz2 |
updated NEWS and bumped version2.0.4
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | NEWS.xml | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,18 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="us-ascii"?> | 1 | <?xml version="1.0" encoding="us-ascii"?> |
2 | <news> | 2 | <news> |
3 | <version version="2.0.4" date="December 22nd, 2009"> | ||
4 | <ni>added attribute exchange and oauth openid extensions contributed by Joseph | ||
5 | Smarr of Plaxo</ni> | ||
6 | <ni>removed legacy compatibility code and dependency on pcre</ni> | ||
7 | <ni>minor build fixes and improvements</ni> | ||
8 | </version> | ||
3 | <version version="2.0.3" date="September 1st, 2009"> | 9 | <version version="2.0.3" date="September 1st, 2009"> |
4 | <ni>Fixed an URI normalization bug misnormalizing URIs with a single-character | 10 | <ni>Fixed an URI normalization bug misnormalizing URIs with a single-character |
5 | trailing component</ni> | 11 | trailing component</ni> |
6 | <ni>build improvements</ni> | 12 | <ni>build improvements</ni> |
7 | </version> | 13 | </version> |
8 | <version version="2.0.2" date="April 11th, 2009"> | 14 | <version version="2.0.2" date="April 11th, 2009"> |
9 | <ni>Handling of unknown encodings during discovery</ni> | 15 | <ni>Handling of unknown encodings during discovery</ni> |
10 | <ni>Discovery robustness improvements</ni> | 16 | <ni>Discovery robustness improvements</ni> |
11 | <ni>Workaround for OPs (e.g. livejournal.com) breaking specs</ni> | 17 | <ni>Workaround for OPs (e.g. livejournal.com) breaking specs</ni> |
12 | <ni>Build fixes and improvements</ni> | 18 | <ni>Build fixes and improvements</ni> |
13 | </version> | 19 | </version> |
14 | <version version="2.0.1" date="November 22nd, 2008"> | 20 | <version version="2.0.1" date="November 22nd, 2008"> |
15 | <ni>Compile-time fixes and improvements</ni> | 21 | <ni>Compile-time fixes and improvements</ni> |
16 | <ni>Portability improvements for FreeBSD</ni> | 22 | <ni>Portability improvements for FreeBSD</ni> |
17 | <ni>Really suppress debugging message from htmltidy when --disable-debug is in | 23 | <ni>Really suppress debugging message from htmltidy when --disable-debug is in |
18 | effect</ni> | 24 | effect</ni> |
diff --git a/configure.ac b/configure.ac index 7fa2f85..e636253 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,17 +1,17 @@ | |||
1 | AC_INIT([libopkele], [2.0.3], [libopkele-bugs@klever.net]) | 1 | AC_INIT([libopkele], [2.0.4], [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 | AC_CONFIG_MACRO_DIR([aclocal.d]) | 4 | AC_CONFIG_MACRO_DIR([aclocal.d]) |
5 | AC_CONFIG_AUX_DIR([aux.d]) | 5 | AC_CONFIG_AUX_DIR([aux.d]) |
6 | AM_INIT_AUTOMAKE([dist-bzip2]) | 6 | AM_INIT_AUTOMAKE([dist-bzip2]) |
7 | 7 | ||
8 | AC_PROG_INSTALL | 8 | AC_PROG_INSTALL |
9 | AC_PROG_CXX | 9 | AC_PROG_CXX |
10 | AC_PROG_CC | 10 | AC_PROG_CC |
11 | AC_PROG_LIBTOOL | 11 | AC_PROG_LIBTOOL |
12 | PKG_PROG_PKG_CONFIG | 12 | PKG_PROG_PKG_CONFIG |
13 | 13 | ||
14 | AC_HEADER_STDC | 14 | AC_HEADER_STDC |
15 | AC_CHECK_FUNCS([timegm]) | 15 | AC_CHECK_FUNCS([timegm]) |
16 | 16 | ||
17 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | 17 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) |