diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-01-26 22:20:42 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-01-26 22:20:42 +0000 |
| commit | 9a2420d1bc29b0a7c8a19bb910a43a8e5d5c9b68 (patch) | |
| tree | 000579758a3ceb8ed540dfd17a425ed34a84c9f9 | |
| parent | 4ae1ebbe5773694c7d876bca36577bbd9fda2ac1 (diff) | |
| download | lasso-9a2420d1bc29b0a7c8a19bb910a43a8e5d5c9b68.tar.gz lasso-9a2420d1bc29b0a7c8a19bb910a43a8e5d5c9b68.tar.xz lasso-9a2420d1bc29b0a7c8a19bb910a43a8e5d5c9b68.zip | |
prepare for 0.6.0
| -rw-r--r-- | NEWS | 11 | ||||
| -rw-r--r-- | configure.ac | 4 | ||||
| -rw-r--r-- | doap.rdf | 7 |
3 files changed, 19 insertions, 3 deletions
@@ -1,6 +1,14 @@ NEWS ==== +0.6.0 - January 27th 2005 +------------------------- + +Rewrote library internals to use standard structures instead of libxml2 nodes; +this allows faster processing, more flexibility and better support for language +bindings. Documented all the API functions. Fixed and improved the rest. + + 0.5.0 - November 9th 2004 ------------------------- @@ -14,11 +22,13 @@ Improved metadata support, a lot of new feature and bugfixes. API, ABI, and dump format of messages have changed, so this release is not compatible with previous versions. + 0.4.1 - September 7th 2004 -------------------------- Small bug fixes. Windows DLL are now linked with standard call aliases. + 0.4.0 - September 6th 2004 -------------------------- @@ -27,6 +37,7 @@ Sign On, Single Logout, and Federation Termination). Revamped language bindings to use SWIG (supported languages are noew Python, PHP, Java and C#). More unit tests. Bugs fixed. + 0.3.0 - July 27th 2004 ---------------------- diff --git a/configure.ac b/configure.ac index 872d99ff..26355262 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ dnl - Second number is the number of supported API versions where API version > dnl first number. dnl - Third number is the current API version implementation version number. dnl See libtool explanations about current, age and release, later in this file. -AC_INIT([Liberty Alliance Single Sign On], 0.5.9, lasso-devel@lists.labs.libre-entreprise.org) +AC_INIT([Liberty Alliance Single Sign On], 0.6.0, lasso-devel@lists.labs.libre-entreprise.org) dnl Check if autoconf ver > 2.53 AC_PREREQ(2.53) dnl Check existence of a relative pathed source file. @@ -24,7 +24,7 @@ dnl Copy stamp REVISIO-INFO in the configure script. AC_REVISION($Revision$) dnl Run many macros mostly needed by configure.ac. -AM_INIT_AUTOMAKE(lasso, 0.5.9) +AM_INIT_AUTOMAKE(lasso, 0.6.0) dnl Create rules to automaticaly regenerate the config header. AM_CONFIG_HEADER(lasso/lasso_config.h) dnl Add --enable-maintainer-mode option to configure. @@ -12,7 +12,7 @@ Lasso (Liberty Alliance Single Sign On) is a free (GNU GPL) implementation of the Liberty Alliance specifications. Those define protocols for federated identities, single sign-on, etc. Lasso provides both a C - library and bindings for several languages (Python, Java, PHP and C# for + library and bindings for several languages (Python, Java, Perl, PHP and C# for now). </description> <shortdesc>Free Software implementation of Liberty Alliance specifications</shortdesc> @@ -22,6 +22,7 @@ <programming-language>Python</programming-language> <programming-language>Java</programming-language> <programming-language>PHP</programming-language> + <programming-language>Perl</programming-language> <programming-language>C#</programming-language> <license rdf:resource="http://usefulinc.com/doap/licenses/gpl"/> <download-page rdf:resource="http://lasso.entrouvert.org/download/"/> @@ -52,6 +53,10 @@ </repository> <release> <Version> + <created>2005-01-27</created> + <revision>0.6.0</revision> + </Version> + <Version> <created>2004-11-09</created> <revision>0.5.0</revision> </Version> |
