From: Michael D. <mik...@us...> - 2004-12-30 16:46:05
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24094 Modified Files: NHibernateSolution.build releasenotes.txt Added Files: .cvsignore Log Message: Changes to NHibernate project file organization. Updated release notes for upcoming build. --- NEW FILE: .cvsignore --- build Index: NHibernateSolution.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/NHibernateSolution.build,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** NHibernateSolution.build 27 Dec 2004 23:12:29 -0000 1.22 --- NHibernateSolution.build 30 Dec 2004 16:45:39 -0000 1.23 *************** *** 124,132 **** <copy todir="${build.dir}/bin"> <fileset basedir="lib"> - <includes name="Commons.*" /> - <includes name="DotNetMock.*" /> <includes name="HashCodeProvider.*" /> - <includes name="NAnt.Core.*" /> - <includes name="NVelocity.*" /> </fileset> </copy> --- 124,128 ---- *************** *** 151,156 **** <nant target="build" buildfile="src/NHibernate.DomainModel/NHibernate.DomainModel.build" /> <nant target="build" buildfile="src/NHibernate.Test/NHibernate.Test.build" /> - <nant target="build" buildfile="src/NHibernate.Tool.hbm2net/NHibernate.Tool.hbm2net.build" /> - <nant target="build" buildfile="src/NHibernate.Tasks/NHibernate.Tasks.build" /> <nant target="build" buildfile="src/NHibernate.Examples/NHibernate.Examples.build" /> --- 147,150 ---- *************** *** 299,302 **** --- 293,300 ---- <excludes name="${clover.src}/**" /> + <!-- exclude ReSharper stuff --> + <excludes name="**/_ReSharper*/**" /> + <excludes name="**/*.resharperoptions" /> + <includes name="src/**" /> *************** *** 312,319 **** <excludes name="**/obj/**" /> - <!-- exclude ReSharper stuff --> - <excludes name="**/_ReSharper*" /> - <excludes name="**/*.resharperoptions" /> - <!-- exclude any keys that exist on the build machine --> <excludes name="**/*.snk" /> --- 310,313 ---- Index: releasenotes.txt =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/releasenotes.txt,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** releasenotes.txt 6 Dec 2004 02:35:32 -0000 1.22 --- releasenotes.txt 30 Dec 2004 16:45:39 -0000 1.23 *************** *** 1,7 **** --- 1,17 ---- Build 0.6.0.0 ======================== + - Added support for proxy="" on classes. + - Added a configuration parameter "hibernate.prepare_sql" to turn on or off calls to IDbCommand.Prepare(). + - Added NHibernate Type for System.SByte. (Sergey Koshcheyev) + - Added support for mapping subclasses and joined-subclasses in different files through addition of extends attribute. (Andrew Mayorov) + - Added support for LIMIT to MySQLDialect. (Sergey Koshcheyev) - Removed DbType {get;} from IUserType. - Fixed problem with spaces in sql generated from hql and MySql. - Modified logging in Transaction to not generate as many messages. + - Modified how exceptions are rethrown so call stack of original exception is not lost. + - Fixed bug with Configuration when there is a class without a namespace. + - Fixed bug with Sql generated for an IN clause that contains a class/subclass with a discriminator-value="null". + - Improved error messages when IDbCommand and IDbConnection can't be found by the IDriver. + - Fixed potential threading problem with QueryTranslator. Build 0.5.0.0 |