Commit in lcio on MAIN
CMakeLists.txt+1-11.40 -> 1.41
config/lcio.properties+3-31.64 -> 1.65
doc/index.html+2-21.9 -> 1.10
   /versions.readme+111.66 -> 1.67
sio/CMakeLists.txt+1-11.11 -> 1.12
src/aid/EVENT/LCIO.aid+2-21.62 -> 1.63
src/cpp/include/lcio.h+2-21.30 -> 1.31
+22-11
7 modified files
--- updated version number to v01-09-01 -------

lcio
CMakeLists.txt 1.40 -> 1.41
diff -u -r1.40 -r1.41
--- CMakeLists.txt	30 May 2008 07:09:05 -0000	1.40
+++ CMakeLists.txt	30 May 2008 14:05:16 -0000	1.41
@@ -21,7 +21,7 @@
 # project version
 SET( ${PROJECT_NAME}_MAJOR_VERSION 1 )
 SET( ${PROJECT_NAME}_MINOR_VERSION 9 )
-SET( ${PROJECT_NAME}_PATCH_LEVEL 0 )
+SET( ${PROJECT_NAME}_PATCH_LEVEL 1 )
 
 # project options
 OPTION( BUILD_SHARED_LIBS "Set to OFF to build static libraries" ON )

lcio/config
lcio.properties 1.64 -> 1.65
diff -u -r1.64 -r1.65
--- lcio.properties	12 Nov 2007 09:02:55 -0000	1.64
+++ lcio.properties	30 May 2008 14:05:16 -0000	1.65
@@ -1,7 +1,7 @@
 # ANT property file for LCIO
 #
 # Author: Mark Donszelmann
-# Version: $Id: lcio.properties,v 1.64 2007/11/12 09:02:55 gaede Exp $
+# Version: $Id: lcio.properties,v 1.65 2008/05/30 14:05:16 gaede Exp $
 #
 debug=true
 
@@ -11,7 +11,7 @@
 
 mainpackage=hep/lcio/event
 title=LCIO Linear Collider IO
-version=v01-09
+version=v01-09-01
 copyright=Copyright &\#169; 2002-2003 LCIO Team, All Rights Reserved.
 name=lcio-event
 packages=hep.lcio.event.*
@@ -137,7 +137,7 @@
 #
 # General definitions for project wide targets
 #
-dist.version=v01-08-05
+dist.version=v01-09-01
 dist.dst=release
 dist.doc.dst=release
 dist.dir=dist

lcio/doc
index.html 1.9 -> 1.10
diff -u -r1.9 -r1.10
--- index.html	8 Nov 2007 17:38:43 -0000	1.9
+++ index.html	30 May 2008 14:05:16 -0000	1.10
@@ -4,7 +4,7 @@
 
 <body>
 <hr>
-<h1>Documentation for LCIO v01-09</h1>
+<h1>Documentation for LCIO v01-09-01</h1>
 
 
 <hr>
@@ -23,6 +23,6 @@
 
 <address></address>
 <!-- hhmts start -->
-Last modified: Thu Nov  8 16:31:53 2007
+Last modified: Fri May 30 16:03:12 2008
 <!-- hhmts end -->
 </body> </html>

lcio/doc
versions.readme 1.66 -> 1.67
diff -u -r1.66 -r1.67
--- versions.readme	23 Nov 2007 16:14:11 -0000	1.66
+++ versions.readme	30 May 2008 14:05:16 -0000	1.67
@@ -3,6 +3,17 @@
 ---------------------------------------------------------------
 
 =====================
+v01-09-01
+=====================
+  no changes in file format
+
+     - optional linkage agains libdcap (dCache) for C++
+       -> cmake ..... -DBUILD_WITH_DCAP=1 -D DCAP_HOME=dcap_home ....
+
+     - made compatible w/ gcc4.3 (A.Bulgheroni)
+
+
+=====================
 v01-09
 =====================
   no changes in file format

lcio/sio
CMakeLists.txt 1.11 -> 1.12
diff -u -r1.11 -r1.12
--- CMakeLists.txt	27 May 2008 07:23:40 -0000	1.11
+++ CMakeLists.txt	30 May 2008 14:05:16 -0000	1.12
@@ -10,7 +10,7 @@
 # project version
 SET( SIO_MAJOR_VERSION 1 )
 SET( SIO_MINOR_VERSION 9 )
-SET( SIO_PATCH_LEVEL 0 )
+SET( SIO_PATCH_LEVEL 1 )
 
 # library *nix style versioning
 SET( ${PROJECT_NAME}_SOVERSION

lcio/src/aid/EVENT
LCIO.aid 1.62 -> 1.63
diff -u -r1.62 -r1.63
--- LCIO.aid	8 Nov 2007 17:38:43 -0000	1.62
+++ LCIO.aid	30 May 2008 14:05:16 -0000	1.63
@@ -4,7 +4,7 @@
 @cpp{
 #define LCIO_MAJOR_VERSION 1
 #define LCIO_MINOR_VERSION 9
-#define LCIO_PATCH_LEVEL 0
+#define LCIO_PATCH_LEVEL 1
 
 #define LCIO_VERSION_GE( MAJV , MINV )  ( (  LCIO_MAJOR_VERSION  > MAJV ) || ( (LCIO_MAJOR_VERSION==MAJV) && ( LCIO_MINOR_VERSION >= MINV ) ) )
 
@@ -16,7 +16,7 @@
 /** Global constants used in LCIO.
  *
  * @author gaede
- * @version $Id: LCIO.aid,v 1.62 2007/11/08 17:38:43 gaede Exp $
+ * @version $Id: LCIO.aid,v 1.63 2008/05/30 14:05:16 gaede Exp $
  * @see LCObject
  * @see LCIO
  */

lcio/src/cpp/include
lcio.h 1.30 -> 1.31
diff -u -r1.30 -r1.31
--- lcio.h	8 Nov 2007 17:38:43 -0000	1.30
+++ lcio.h	30 May 2008 14:05:16 -0000	1.31
@@ -7,7 +7,7 @@
  * documentation with doxygen. 
  * 
  * @author gaede
- * @version $Id: lcio.h,v 1.30 2007/11/08 17:38:43 gaede Exp $ 
+ * @version $Id: lcio.h,v 1.31 2008/05/30 14:05:16 gaede Exp $ 
  * @see LCEvent
  */
 #include "EVENT/LCIO.h"
@@ -15,7 +15,7 @@
 #include "IMPL/LCIOExceptionHandler.h"
 
 
-/** \mainpage <a href="http://lcio.desy.de">LCIO</a> (v01-09) 
+/** \mainpage <a href="http://lcio.desy.de">LCIO</a> (v01-09-01) 
  * A persistency framework for linear collider simulation studies.
  * \section Overview
  * This is the API documentation for the C++ version of LCIO. For general documetation on 
CVSspam 0.2.8