NullableTypes ReadMe.txt,1.18,1.19 ReleaseNotes.txt,1.15,1.16
Status: Inactive
Brought to you by:
lukadotnet
From: \(luKa\) <luk...@us...> - 2005-10-30 13:30:55
|
Update of /cvsroot/nullabletypes/NullableTypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24207 Modified Files: ReadMe.txt ReleaseNotes.txt Log Message: Index: ReleaseNotes.txt =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/ReleaseNotes.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ReleaseNotes.txt 12 Feb 2005 03:44:33 -0000 1.15 --- ReleaseNotes.txt 30 Oct 2005 13:30:42 -0000 1.16 *************** *** 1,29 **** NullableTypes ver. 1.3 ---------------------------------------------------------- ! This is the first beta after the official release v1.2. It adds ! minor improvements. It include binary, samples in C# and VB.NET, help and source code. Changes from ver. 1.2 - - Security: Reduced attack surface of NullableTypes assembly - - Security: Reduced permissions required for NullableTypes callers. - - Improved tests NullableSingleTest.ParseFormatException() and - NullableDoubleTest.ParseFormatException() to make them pass also - with the current culture 'German (Switzerland)' 'de-CH' 'LCID=2055' - - NullableStringTest2.XmlSerializable test was broken - not nu.Test and - not calling correct function. - - Added new type NullableGuid and added NullableGuid tests, - added NullableGuid conversions in DBNullConvert and NullConvert ! NullableTypes ver. 1.2 ! ---------------------------------------------------------- ! This official release follow the first official v1.0, it enable ! NullableTypes to work smoothly with Web Services as built-in types. ! It include binary, samples in C# and VB.NET, help and source code. ! Types available are: - NullableBoolean - NullableByte --- 1,36 ---- NullableTypes ver. 1.3 ---------------------------------------------------------- ! In this beta more improvements after the official release v1.2. It include binary, samples in C# and VB.NET, help and source code. Changes from ver. 1.2 + - New nullable types + - Added NullableGuid with relative conversions in DBNullConvert and + NullConvert, unit tests and xml documentation + - Added NullableTimeSpan with relative conversions in DBNullConvert and + NullConvert, unit tests and xml documentation + - Security + - Reduced attack surface of NullableTypes assembly + - Reduced permissions required for NullableTypes callers. + - Bug fix that break backward compatibility + - Fixed NullableDateTime Add method: it have to return a new DateTime instead + of changing the current DateTime value. ! - Changes ! - NullableInt16 GetHashcode made compliant with native Int16 ! - Improved unit tests ! - Improved ParseFormatException() test in NullableSingleTest and NullableDoubleTest ! to support also the culture 'German (Switzerland)' 'de-CH' 'LCID=2055' ! - Fixed NullableStringTest2.XmlSerializable test. ! - Added missing tests for Add and Subtract methods of NullableDateTime ! ! - Xml documentation corrections ! ! ! Now available types are: - NullableBoolean - NullableByte *************** *** 36,39 **** --- 43,48 ---- - NullableString - NullableDateTime + - NullableGuid + - NullableTimeSpan - DBNullConvert - NullConvert *************** *** 41,44 **** --- 50,61 ---- + + NullableTypes ver. 1.2 + ---------------------------------------------------------- + This official release follow the first official v1.0, it enable + NullableTypes to work smoothly with Web Services as built-in types. + It include binary, samples in C# and VB.NET, help and source code. + + Changes from ver. 1.0 - NullableTypes enabled to work with Web Services by Index: ReadMe.txt =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/ReadMe.txt,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ReadMe.txt 1 Jun 2004 18:40:31 -0000 1.18 --- ReadMe.txt 30 Oct 2005 13:30:42 -0000 1.19 *************** *** 1,4 **** ========================================================== ! NullableTypes ver. 1.2 ========================================================== --- 1,4 ---- ========================================================== ! NullableTypes ver. 1.3 ========================================================== *************** *** 24,28 **** Types implemented by NullableTypes are: NullableBoolean, NullableByte, NullableInt16, NullableInt32, ! NullableInt64, NullableSingle, NullableDouble, NullableDecimal, NullableString and NullableDateTime. Helper functions provide seamless integration with Windows and ASP.NET user controls and with ADO.NET. --- 24,29 ---- Types implemented by NullableTypes are: NullableBoolean, NullableByte, NullableInt16, NullableInt32, ! NullableInt64, NullableSingle, NullableDouble, NullableDecimal, NullableString, NullableDateTime, ! NullableTimeSpan and NullableGuid. Helper functions provide seamless integration with Windows and ASP.NET user controls and with ADO.NET. *************** *** 81,85 **** NullableTypes 1.2 source code still compile with .NET Framework v1.0. ! NullableTypes Backward compatibility NullableTypes 1.2 assembly is backward compatibile with NullableTypes 1.0 assembly. To use a NullableTypes 1.2 assembly where a NullableTypes 1.0 assembly is expected, register the --- 82,86 ---- NullableTypes 1.2 source code still compile with .NET Framework v1.0. ! NullableTypes 1.2 Backward compatibility NullableTypes 1.2 assembly is backward compatibile with NullableTypes 1.0 assembly. To use a NullableTypes 1.2 assembly where a NullableTypes 1.0 assembly is expected, register the *************** *** 90,93 **** --- 91,96 ---- 'NullableTypes.Tests.dll-v1.0' to 'NullableTypes.Tests.dll' in the 'bin' folder and do run tests again. + NullableTypes 1.3 break Backward compatibility + VS.NET compatibility NullableTypes projects and source code are created using VS.NET 2002 and have been converted to VS.NET 2003. *************** *** 97,106 **** ======================= ! What about NullableTypes and SqlTypes (or other nullable types provided by the .NET Data Provider, as the ! structures in System.Data.OracleClient or types in Oracle.DataAccess.Types)? ! What about NullableTypes and Nullable<T> (Whidbey)? ! ! Find the answer here: ! http://nullabletypes.sourceforge.net/#faq --- 100,104 ---- ======================= ! http://nullabletypes.sourceforge.net/#faq *************** *** 125,128 **** --- 123,128 ---- using NString = NullableTypes.NullableString; using NDateTime = NullableTypes.NullableDateTime; + using NTimeStamp = NullableTypes.NullableTimeStamp; + using NGuid = NullableTypes.NullableGuid; *************** *** 139,142 **** --- 139,144 ---- Imports NString = NullableTypes.NullableString Imports NDateTime = NullableTypes.NullableDateTime + Imports NTimeStamp = NullableTypes.NullableTimeStamp + Imports NGuid = NullableTypes.NullableGuid *************** *** 144,147 **** --- 146,150 ---- =============== Thanks goes to the NullableTypes project members: + - Damien Guard (NullableTimeStamp, NullableGuid, Web Services support) - Abhijeet Dev (NullableDecimal, NullableInt16) - Eric Lau (NullableDateTime) *************** *** 150,155 **** Thanks also goes to Massimo Roccaforte, Roni Burd, Partha Choudhury, Shaun Bowe and ! Alberto Tronchin for their suggestions and to Damien Guard for his help implementing Web Services ! support. At the end thanks also goes to the open-source community that developed these tools: --- 153,157 ---- Thanks also goes to Massimo Roccaforte, Roni Burd, Partha Choudhury, Shaun Bowe and ! Alberto Tronchin for their suggestions. At the end thanks also goes to the open-source community that developed these tools: *************** *** 212,217 **** --- ! Regards, ! (luKa) ! NullableTypes Project Manager --- 214,219 ---- --- ! Regards ! (luKa), Project Manager ! |