From: Jason B. <jas...@us...> - 2002-01-03 16:14:45
|
Update of /cvsroot/maxent/maxent In directory usw-pr-cvs1:/tmp/cvs-serv4931 Modified Files: CHANGES build.xml Log Message: Just some text modifications that I did while making the release and forgot to commit. Index: CHANGES =================================================================== RCS file: /cvsroot/maxent/maxent/CHANGES,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** CHANGES 2002/01/03 14:34:29 1.8 --- CHANGES 2002/01/03 16:14:41 1.9 *************** *** 39,42 **** --- 39,44 ---- 1.2.6 ----- + Summary: efficiency improvements for model training. + Removed Colt dependency in favor of GNU Trove. (Eric) *************** *** 52,56 **** There is still more to be done in this department, however. (Eric) ! The output directory is now "output" instead of "build". (Jason) 1.2.4 --- 54,59 ---- There is still more to be done in this department, however. (Eric) ! The output directory of the build structure is now "output" instead of ! "build". (Jason) 1.2.4 Index: build.xml =================================================================== RCS file: /cvsroot/maxent/maxent/build.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** build.xml 2002/01/02 11:31:30 1.14 --- build.xml 2002/01/03 16:14:41 1.15 *************** *** 11,15 **** <property name="name" value="maxent"/> <property name="version" value="1.2.6"/> ! <property name="year" value="2001"/> <echo message="----------- ${Name} ${version} [${year}] ------------"/> --- 11,15 ---- <property name="name" value="maxent"/> <property name="version" value="1.2.6"/> ! <property name="year" value="2002"/> <echo message="----------- ${Name} ${version} [${year}] ------------"/> *************** *** 122,126 **** </addfiles> </jlink> - <delete file="${build.dir}/${name}-${DSTAMP}.jar" /> </target> --- 122,125 ---- *************** *** 132,137 **** <tar tarfile="${name}-${version}-src.tar" basedir="../" ! includes="${name}/**" > ! <exclude name="${name}/docs/api/**"/> <exclude name="**/CVS"/> </tar> --- 131,136 ---- <tar tarfile="${name}-${version}-src.tar" basedir="../" ! includes="${Name}/**" > ! <exclude name="${Name}/docs/api/**"/> <exclude name="**/CVS"/> </tar> |