[Spread-cvs] commit: r274 - in trunk: . include java java/spread

jonathan at spread.org jonathan at spread.org
Tue Aug 30 09:53:19 EDT 2005


Author: jonathan
Date: 2005-08-30 09:53:19 -0400 (Tue, 30 Aug 2005)
New Revision: 274

Modified:
   trunk/CVS_Readme.txt
   trunk/Readme.txt
   trunk/include/sp.h
   trunk/java/build.xml
   trunk/java/spread/SpreadConnection.java
Log:
Update docs and version numbers for 4.0.0 release.


Modified: trunk/CVS_Readme.txt
===================================================================
--- trunk/CVS_Readme.txt	2005-08-30 13:19:47 UTC (rev 273)
+++ trunk/CVS_Readme.txt	2005-08-30 13:53:19 UTC (rev 274)
@@ -10,13 +10,14 @@
 
 You should now have a 'spread' directory which contains the subdirectories:
 
-    * spread/daemon with the Spread daemon and C library code.
+    * spread/daemon with the Spread daemon and spmonitor code.
+    * spread/libspread with the C library code.
+    * spread/include with the header files for C/C++ programs that use Spread.
     * spread/examples with example C programs for a sample user and flooder program.
-    * spread/javalib with the Java library code.
-    * spread/javaapps with sample Java applications.
+    * spread/java with the Java library and sample application code.
     * spread/perl with the Perl library code. 
+    * spread/stdutil which contains a copy of the Stdutil library of data structures.
 
-
 To Build from a clean SVN checkout
 ----------------------------------
 You normally just need to run from the top level directory:

Modified: trunk/Readme.txt
===================================================================
--- trunk/Readme.txt	2005-08-30 13:19:47 UTC (rev 273)
+++ trunk/Readme.txt	2005-08-30 13:53:19 UTC (rev 274)
@@ -22,11 +22,12 @@
 |    Jonathan Stanton      jstanton at gwu.edu                                 |
 |                                                                           |
 | Major Contributors:                                                       |
+|    Ryan Caudy           rcaudy at gmail.com - contribution to process groups.|
 |    Cristina Nita-Rotaru crisn at cs.purdue.edu - GC security.                |
-|    Theo Schlossnagle    jesus at omniti.com - Perl, skiplists, autoconf.     |
+|    Theo Schlossnagle    jesus at omniti.com - Perl, autoconf, old skiplist.  |
 |    Dan Schoenblum       dansch at cnds.jhu.edu - Java interface.             |
-|    John Schultz         jschultz at d-fusion.net - contribution to process   |
-|					          group membership.         |
+|    John Schultz         jschultz at spreadconcepts.com - Virtual Synchrony   |
+|					          data structures..         |
 |                                                                           |
 | Contributors:                                                             |
 |    Ryan Caudy        wyvern at cnds.jhu.edu - Group membership               |
@@ -36,15 +37,15 @@
 |    Marc Zyngier                        - Windows fixes                    |
 |                                                                           |
 | Special thanks to the following for providing ideas and/or code:          |
-|    Ken Birman, Danny Dolev, Mike Goodrich, Ben Laurie,                    |
+|    Ken Birman, Danny Dolev, Jacob Green, Mike Goodrich, Ben Laurie,       |
 |    David Shaw, Robbert VanRenesse.                                        |
 |                                                                           |
 | Partial funding provided by the Defense Advanced Research Projects Agency |
-| (DARPA) and The National Security Agency (NSA) since 2000. The Spread     |
+| (DARPA) and The National Security Agency (NSA) 2000-2004. The Spread      |
 | toolkit is not necessarily endorsed by DARPA or the NSA.                  |
 |                                                                           |
-| WWW    : http://www.spread.org  and  http://www.cnds.jhu.edu              |
-| Contact: spread at spread.org                                                |
+| WWW    : http://www.spread.org  and  http://www.spreadconcepts.com        |
+| Contact: info at spreadconcepts.com                                          |
 |                                                                           |
 | Version 4.0.0  built XX/YYY/2005                                          |
 \===========================================================================/

Modified: trunk/include/sp.h
===================================================================
--- trunk/include/sp.h	2005-08-30 13:19:47 UTC (rev 273)
+++ trunk/include/sp.h	2005-08-30 13:53:19 UTC (rev 274)
@@ -58,7 +58,7 @@
 
 #define		DEFAULT_SPREAD_PORT	4803
 
-#define         SPREAD_VERSION          ( (3 << 24) | ( 17 << 16) | 3 )
+#define         SPREAD_VERSION          ( (4 << 24) | ( 0 << 16) | 0 )
 
 #define		MAX_GROUP_NAME		32
 #define         MAX_PRIVATE_NAME        10 /* largest possible size of private_name field of SP_connect() */

Modified: trunk/java/build.xml
===================================================================
--- trunk/java/build.xml	2005-08-30 13:19:47 UTC (rev 273)
+++ trunk/java/build.xml	2005-08-30 13:53:19 UTC (rev 274)
@@ -8,7 +8,7 @@
 <project name="spread" default="jar" basedir=".">
 
         <property name="Name" value="Spread"/>
-        <property name="version" value="3.17.3"/>
+        <property name="version" value="4.0.0"/>
         <property name="project" value="spread"/>
         <property name="title" value="${Name} ${version} API for Java"/>
         <property name="year" value="2004"/>

Modified: trunk/java/spread/SpreadConnection.java
===================================================================
--- trunk/java/spread/SpreadConnection.java	2005-08-30 13:19:47 UTC (rev 273)
+++ trunk/java/spread/SpreadConnection.java	2005-08-30 13:53:19 UTC (rev 274)
@@ -87,9 +87,9 @@
 	
 	// The Spread version.
 	//////////////////////
-        private static final int SP_MAJOR_VERSION = 3;
-	private static final int SP_MINOR_VERSION = 17;
-	private static final int SP_PATCH_VERSION = 3;
+        private static final int SP_MAJOR_VERSION = 4;
+	private static final int SP_MINOR_VERSION = 0;
+	private static final int SP_PATCH_VERSION = 0;
 
         // The default authentication method
         ////////////////////////////////////




More information about the Spread-cvs mailing list