Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update version history in preparation for the upcoming release. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0329d8f6ad045b2c286bcab864263d5b |
User & Date: | mistachkin 2011-09-02 13:57:57.384 |
Context
2011-09-02
| ||
15:05 | Update all version numbers to 1.0.75.0 and update the SQLite core to the latest trunk. check-in: 092d06ea5b user: mistachkin tags: trunk | |
13:57 | Update version history in preparation for the upcoming release. check-in: 0329d8f6ad user: mistachkin tags: trunk | |
2011-08-10
| ||
03:28 | Move configuration class code closer to the other helper classes. Mark delegates as internal. check-in: a748b76dc9 user: mistachkin tags: trunk | |
Changes
Changes to tools/install/Installer.cs.
︙ | ︙ | |||
90 91 92 93 94 95 96 97 98 99 100 101 102 103 | #endregion /////////////////////////////////////////////////////////////////////////// #region Installer Class internal static class Installer { #region AnyPair Class private sealed class AnyPair<T1, T2> { #region Public Constructors // // WARNING: This constructor produces an immutable "empty" pair // object. | > | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | #endregion /////////////////////////////////////////////////////////////////////////// #region Installer Class internal static class Installer { #region Private Helper Classes #region AnyPair Class private sealed class AnyPair<T1, T2> { #region Public Constructors // // WARNING: This constructor produces an immutable "empty" pair // object. |
︙ | ︙ | |||
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 | public bool Confirm { get { return confirm; } set { confirm = value; } } #endregion } #endregion /////////////////////////////////////////////////////////////////////// #region Private Constant Data private const string CoreFileName = "System.Data.SQLite.dll"; private const string LinqFileName = "System.Data.SQLite.Linq.dll"; | > | 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 | public bool Confirm { get { return confirm; } set { confirm = value; } } #endregion } #endregion #endregion /////////////////////////////////////////////////////////////////////// #region Private Constant Data private const string CoreFileName = "System.Data.SQLite.dll"; private const string LinqFileName = "System.Data.SQLite.Linq.dll"; |
︙ | ︙ |
Changes to www/news.wiki.
1 2 3 4 5 6 7 8 9 10 11 | <title>News</title> <b>Version History</b> <p> <b>1.0.74.0 - July 4, 2011</b> </p> <ul> <li>Updated to SQLite 3.7.7.1 <a href="http://www.sqlite.org/src/info/af0d91adf4">[af0d91adf4]</a>.</li> <li>Fix incorrect hard-coded .NET Framework version information SQLiteFactory_Linq.cs that was causing IServiceProvider.GetService to fail when running against the .NET Framework 3.5.</li> <li>Fix all XML documentation warnings.</li> | > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | <title>News</title> <b>Version History</b> <p> <b>1.0.75.0 - September XX, 2011</b> </p> <ul> <li>More enhancements to the build system.</li> <li>Make all the assembly versioning attributes consistent.</li> <li>Add unit testing infrastructure using <a href="http://eagle.to/">Eagle</a>.</li> <li>Integrate all legacy unit tests, including the "testlinq" project, into the new test suite.</li> <li>Add projects to build the interop assembly statically linked to the Visual C++ runtime. Fix for [53f0c5cbf6].</li> <li>Add SQLITE_ENABLE_STAT2 compile-time option to the interop assembly. Fix for [74807fbf27].</li> <li>Fix mutex issues exposed when running the test suite with the debug version of SQLite.</li> <li>Support the SQLITE_FCNTL_WIN32_AV_RETRY file control to mitigate the impact of file sharing violations caused by external processes.</li> <li>Refactor the logging interface to be thread-safe and self-initializing.</li> <li>Shutdown the SQLite native interface when the AppDomain is being unloaded. Fix for [b4a7ddc83f].</li> <li>Support Skip operation for LINQ using OFFSET. Fix for [8b7d179c3c].</li> <li>Support all SQLite journal modes. Fix for [448d663d11].</li> <li>Do not throw exceptions when disposing SQLiteDataReader. Fix for [e1b2e0f769].</li> <li>The REAL type should be mapped to System.Double. Fix for [2c630bffa7] and [b0a5990f48].</li> <li>Minor optimization to GetParamValueBytes(). Fix for [201128cc88].</li> <li>Support the ON UPDATE, ON DELETE, and MATCH clause information when generating schema metadata for foreign keys. Partial fix for [b226147b37]. VS designer changes are not yet tested.</li> <li>Fix incorrect resource name for SR.resx in the mixed-mode assembly.</li> </ul> <p> <b>1.0.74.0 - July 4, 2011</b> </p> <ul> <li>Updated to SQLite 3.7.7.1 <a href="http://www.sqlite.org/src/info/af0d91adf4">[af0d91adf4]</a>.</li> <li>Fix incorrect hard-coded .NET Framework version information SQLiteFactory_Linq.cs that was causing IServiceProvider.GetService to fail when running against the .NET Framework 3.5.</li> <li>Fix all XML documentation warnings.</li> |
︙ | ︙ |