From: Michael D. <mik...@us...> - 2004-07-23 13:22:00
|
Update of /cvsroot/nhibernate/nhibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7220 Modified Files: readme.html releasenotes.txt Log Message: Preparing for build 6. Index: readme.html =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/readme.html,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** readme.html 5 Apr 2004 15:55:53 -0000 1.9 --- readme.html 23 Jul 2004 13:21:49 -0000 1.10 *************** *** 1,38 **** <html> ! <body> ! ! <h1>Welcome to NHibernate.</h1> ! <hr /> ! <p> ! NHibernate is a .NET based object persistence library for relational databases. NHibernate is a port of the excellent Java <a href="http://hibernate.org">Hibernate</a> relational persistence tool. ! </p> ! ! <h2>Latest Version</h2> ! <p> ! Details of the latest version of NHibernate can be found on SourceForge at <a href="http://sourceforge.net/projects/nhibernate">http://sourceforge.net/projects/nhibernate</a>. ! </p> ! ! <h2>Documentation</h2> ! <p> ! Documentation is very thin right now. We are working on documenting the code as it is being developed. We are going to add a step in our <a href="http://sourceforge.net/projects/nant">NAnt</a> build files to build the API documentation in MSDN format thanks to <a href="http://sourceforge.net/projects/ndoc">NDoc</a>. ! </p> ! <p> ! We will ride the coat tails of Hibernate's excellent documentation for a while. The first few docs will be describing the subtle differences between NHibernate and Hibernate - including the features found in Hibernate that have not been developed in NHibernate (yet). ! </p> ! ! <h2>Bug Reports</h2> ! <p> ! As we mentioned before, this software is still being developed. So if you do find any bugs please use the <a href="http://jira.nhibernate.org:8080/">JIRA bug tracker</a> . ! </p> - <h2>Licenses</h2> - <p> - This software is distributed under the terms of the FSF Lesser Gnu Public License (see lgpl.txt). - </p> - <p> - This product includes software developed by the Apache Software Foundation (http://www.apache.org/). - <ul> - <li>log4net</li> - </ul> - </body> - </html> \ No newline at end of file --- 1,59 ---- <html> ! <body> ! <h1>Welcome to NHibernate.</h1> ! <hr> ! <p> ! NHibernate is a .NET based object persistence library for relational databases. ! NHibernate is a port of the excellent Java <a href="http://hibernate.org">Hibernate</a> ! relational persistence tool. ! </p> ! <h2>Latest Version</h2> ! <p> ! Details of the latest version of NHibernate can be found on SourceForge at <a href="http://sourceforge.net/projects/nhibernate"> ! http://sourceforge.net/projects/nhibernate</a>. ! </p> ! <h2>Documentation</h2> ! <p> ! Documentation is very thin right now. We are working on documenting the code as ! it is being developed. The API documentation is in MSDN format thanks to <a href="http://sourceforge.net/projects/ndoc"> ! NDoc</a>. ! </p> ! <p> ! We will ride the coat tails of Hibernate's excellent documentation for a while. ! The Hibernate documentation for the version we are porting can be found at ! <a href="http://nhibernate.sourceforge.net/h2.0.3-docs/reference/html/"> http://nhibernate.sourceforge.net/h2.0.3-docs/reference/html/ </a>. ! The first few docs will be describing the subtle differences ! between NHibernate and Hibernate - including the features found in Hibernate ! that have not been developed in NHibernate (yet). ! </p> ! <h2>Bug Reports</h2> ! <p> ! As we mentioned before, this software is still being developed. So if you do ! find any bugs please use the <a href="http://jira.nhibernate.org:8080/">JIRA bug ! tracker</a> . ! </p> ! <h2>Licenses</h2> ! <p> ! This software is distributed under the terms of the FSF Lesser Gnu Public ! License (see lgpl.txt). ! </p> ! <p> ! This product includes software developed by the Apache Software Foundation ! (http://www.apache.org/). ! </p> ! <ul> ! <li> ! log4net</li> ! </ul> ! <p> ! This product includes source code derived from a sample written by Mattias ! Sjogren. ! </p> ! <ul> ! <li> ! HashCodeProvider - original code can be found at <a href="http://www.msjogren.net/dotnet/eng/samples/misc.asp"> ! http://www.msjogren.net/dotnet/eng/samples/misc.asp</a></li> ! </ul> ! </body> ! </html> Index: releasenotes.txt =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/releasenotes.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** releasenotes.txt 8 Jul 2004 12:49:52 -0000 1.3 --- releasenotes.txt 23 Jul 2004 13:21:50 -0000 1.4 *************** *** 1,3 **** ! PreAlpah Build 5 ======================== - Added check in Configuration for 1.1 version of runtime. --- 1,19 ---- ! PreAlpha Build 6 ! ======================== ! - Fixed Configuration so app.config/web.config behaives like hibernate.properties and a hibernate.cfg.xml. Settings in app.confg/web.config are no longer required if a cfg.xml file is used. ! - Dialects now set default values for outer joins. ! - Fixed bug in ArrayHolder with null elements. ! - Added IDisposable to ISession ! - Fixed bug with lazy loaded SortedSet during Flush(). ! - Fixed problem with Loading using LockModes because of missing columns with Forumlas. ! - Added SetAnsiString to IQuery ! - Fixed bug with IDbCommands used in a Session that is Disconnected and Reconnected not being associated with the correct IDbTransaction. ! - Driver can disable calls to IDbCommand.Prepare() for Data Providers that don't support it. ! - Removed requirement to set length with type attribute - ie, can use type="String" instead of type="String(50)". ! - schema-export now functions just like it does with hibernate 2.0.3 ! - Converting a SqlString to an IDbCommand is now a Driver specific function because different Driver's have different requirements for IDbCommands. ! - Added HashCodeProvider.dll to remove problems with RuntimeHelpers.GetHashCode causing MissingMethodException with App Domain reloading with ASP.NET and NUnit. ! ! PreAlpha Build 5 ======================== - Added check in Configuration for 1.1 version of runtime. |