From: <hib...@li...> - 2006-02-28 17:33:59
|
Author: ste...@jb... Date: 2006-02-28 12:33:51 -0500 (Tue, 28 Feb 2006) New Revision: 9519 Modified: trunk/Hibernate3/build.xml trunk/Hibernate3/changelog.txt trunk/Hibernate3/doc/reference/en/master.xml trunk/Hibernate3/readme.txt trunk/Hibernate3/src/org/hibernate/cfg/Environment.java Log: prep 3.2-alpha1 Modified: trunk/Hibernate3/build.xml =================================================================== --- trunk/Hibernate3/build.xml 2006-02-28 17:06:56 UTC (rev 9518) +++ trunk/Hibernate3/build.xml 2006-02-28 17:33:51 UTC (rev 9519) @@ -17,10 +17,11 @@ <property name="name" value="hibernate"/> <property name="name2" value="hibernate3"/> <property name="version.major" value="3"/> - <property name="version.minor" value="1"/> - <property name="version.patchlevel" value="2"/> - <property name="version.sansPatchLevel" value="${version.major}.${version.minor}"/> - <property name="version.full" value="${version.sansPatchLevel}.${version.patchlevel}"/> + <property name="version.minor" value="2"/> + <property name="version.micro" value="0"/> + <property name="version.qualifier" value="alpha1"/> + <property name="version.full" value="${version.major}.${version.minor}.${version.micro}.${version.qualifier}"/> + <property name="version.major_minor" value="${version.major}.${version.minor}"/> <property name="fullname" value="${name}-${version.full}"/> <!-- set global properties for this build --> @@ -38,7 +39,7 @@ <property name="test.out.dir" value="testout"/> <property name="instrumenttest.out.dir" value="instrumenttestout"/> <property name="clover.out.dir" value="cloverout"/> - <property name="dist.dir" value="../${name}-${version.sansPatchLevel}"/> + <property name="dist.dir" value="../${name}-${version.major_minor}"/> <property name="doc.dir" value="doc"/> <property name="doc.api.dir" value="${doc.dir}/api"/> <property name="doc.ref.dir" value="${doc.dir}/reference"/> @@ -338,7 +339,10 @@ <include name="org/hibernate/**/*.class"/> <patternset refid="jar.files"/> <manifest> - <attribute name="Hibernate-Version" value="${version.full}"/> + <attribute name="Implementation-Title" value="Hibernate3"/> + <attribute name="Implementation-Version" value="${version.full}"/> + <attribute name="Implementation-Vendor" value="hibernate.org"/> + <attribute name="Hibernate-Version" value="${version.full}"/> </manifest> </jar> </target> @@ -464,11 +468,11 @@ depends="splash,versioncheck,jar,javadoc,copysource,copylib,extras,antlr.bnf,refdoc" description="Build everything and package"> <zip zipfile="${fullname}.zip"> - <zipfileset prefix="${name}-${version.sansPatchLevel}" dir="${dist.dir}"/> + <zipfileset prefix="${name}-${version.major_minor}" dir="${dist.dir}"/> </zip> - <checksum file="${fullname}.zip"/> + <checksum file="${fullname}.zip" /> <tar tarfile="${fullname}.tar"> - <tarfileset prefix="${name}-${version.sansPatchLevel}" dir="${dist.dir}"/> + <tarfileset prefix="${name}-${version.major_minor}" dir="${dist.dir}"/> </tar> <gzip src="${fullname}.tar" zipfile="${fullname}.tar.gz"/> <delete file="${dist.dir}.tar"/> Modified: trunk/Hibernate3/changelog.txt =================================================================== --- trunk/Hibernate3/changelog.txt 2006-02-28 17:06:56 UTC (rev 9518) +++ trunk/Hibernate3/changelog.txt 2006-02-28 17:33:51 UTC (rev 9519) @@ -5,7 +5,36 @@ refer to the particular case on JIRA using the issue tracking number to learn more about each case. +Chages in version 3.2 alpha1 (2006.02.28) +------------------------------------------- +** Bug + * [HHH-687] - Exception QuerySyntaxError not really serializable + * [HHH-1236] - Remove static reference to classloader, to avoid memory leak at webapp reload + * [HHH-1287] - Problem with WAS ExtendedJTATransaction not available when using MDB + * [HHH-1419] - Update + Exists doesn't seem to work + * [HHH-1445] - SchemaUpdate closes shared ConnectionProvider + * [HHH-1464] - QueryException from Query.getReturnAliases when query uses "fetch" + * [HHH-1486] - Concurrent access issues with both SoftLimitMRUCache and SimpleMRUCache + * [HHH-1508] - Session.createQuery() should not flush the session + +** Improvement + * [HHH-1411] - Collection fetches and DISTINCT + * [HHH-1412] - Collection fetches and firstResult/maxRows + * [HHH-1416] - LockMode.FORCE to implement EJB3 LockModeType.WRITE + * [HHH-1457] - support new optimisitc locking capabilities of JBossCache + * [HHH-1466] - better handling of Antlr exceptions + * [HHH-1516] - support DataDirect standard jdbc stored procedures + * [HHH-1518] - Guarentee LockMode behaviors + * [HHH-1520] - with clause with implied joins within an explicit join + * [HHH-1526] - Improved DTDEntityResolver + +** New Feature + * [HHH-1251] - Avoid replicating the clearing of TreeCache on SessionFactory..close() + * [HHH-1410] - FlushMode.AUTO -> COMMIT when outside a transaction + * [HHH-1447] - pluggable bytecode libraries + + Changes in version 3.1.2 (01.27.2006) ------------------------------------------- Modified: trunk/Hibernate3/doc/reference/en/master.xml =================================================================== --- trunk/Hibernate3/doc/reference/en/master.xml 2006-02-28 17:06:56 UTC (rev 9518) +++ trunk/Hibernate3/doc/reference/en/master.xml 2006-02-28 17:33:51 UTC (rev 9519) @@ -33,7 +33,7 @@ <bookinfo> <title>HIBERNATE - Relational Persistence for Idiomatic Java</title> <subtitle>Hibernate Reference Documentation</subtitle> - <releaseinfo>3.1.2</releaseinfo> + <releaseinfo>3.2 alpha1</releaseinfo> </bookinfo> <toc/> Modified: trunk/Hibernate3/readme.txt =================================================================== --- trunk/Hibernate3/readme.txt 2006-02-28 17:06:56 UTC (rev 9518) +++ trunk/Hibernate3/readme.txt 2006-02-28 17:33:51 UTC (rev 9519) @@ -1,6 +1,6 @@ Hibernate - Relational Persistence for Idiomatic Java ===================================================== -version 3.1.2, Jan 27, 2006 +version 3.2 alpha1, Feb 28, 2006 Instructions ------------ Modified: trunk/Hibernate3/src/org/hibernate/cfg/Environment.java =================================================================== --- trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-02-28 17:06:56 UTC (rev 9518) +++ trunk/Hibernate3/src/org/hibernate/cfg/Environment.java 2006-02-28 17:33:51 UTC (rev 9519) @@ -153,7 +153,7 @@ */ public final class Environment { - public static final String VERSION = "3.1.2"; + public static final String VERSION = "3.2 alpha1"; /** * <tt>ConnectionProvider</tt> implementor to use when obtaining connections |