Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update version history docs. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9a84e18abe7a33d1e781d9e0ca315efa |
User & Date: | mistachkin 2016-10-29 21:48:05 |
Context
2016-10-29
| ||
22:03 | Add a special NuGet-only XML configuration file to allow the interop assemblies to be found by the managed assembly at design-time. Pursuant to [d4728aecb7]. check-in: 6e8e58e534 user: mistachkin tags: trunk | |
21:48 | Update version history docs. check-in: 9a84e18abe user: mistachkin tags: trunk | |
06:58 | Add support for the '%PreLoadSQLite_TargetFramework%' configuration setting replacement token. Pursuant to [d4728aecb7]. check-in: 654d96246c user: mistachkin tags: trunk | |
Changes
Changes to Doc/Extra/Provider/version.html.
42 42 </div> 43 43 <div id="mainSection"> 44 44 <div id="mainBody"> 45 45 <h1 class="heading">Version History</h1> 46 46 <p><b>1.0.104.0 - December XX, 2016</b></p> 47 47 <ul> 48 48 <li>Updated to <a href="https://www.sqlite.org/releaselog/3_15_0.html">SQLite 3.15.0</a>.</li> 49 + <li>Add the "%PreLoadSQLite_AssemblyDirectory%", "%PreLoadSQLite_TargetFramework%", and "%PreLoadSQLite_XmlConfigDirectory%" <a href="https://system.data.sqlite.org/index.html/artifact?ci=trunk&filename=Doc/Extra/Provider/environment.html">replacement tokens</a> for use in configuration setting values.</li> 49 50 <li>Prevent the GetByte, GetChar, and GetInt16 methods of the SQLiteDataReader class from throwing exceptions for large integer values. Pursuant to <a href="https://system.data.sqlite.org/index.html/info/5535448538">[5535448538]</a>. <b>** Potentially Incompatible Change **</b></li> 50 51 </ul> 51 52 <p><b>1.0.103.0 - September 15, 2016</b></p> 52 53 <ul> 53 54 <li>Updated to <a href="https://www.sqlite.org/releaselog/3_14_2.html">SQLite 3.14.2</a>.</li> 54 55 <li>Add preliminary support for the .NET Framework 4.6.2.</li> 55 56 <li>Change the SQLiteReadValueCallback delegate "eventArgs" parameter to be of type SQLiteReadEventArgs. <b>** Potentially Incompatible Change **</b></li>
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
980 980 /// </returns> 981 981 private static string GetAssemblyTargetFramework( 982 982 Assembly assembly 983 983 ) 984 984 { 985 985 if (assembly != null) 986 986 { 987 -#if (NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462) && !PLATFORM_COMPACTFRAMEWORK 987 +#if NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462 988 988 try 989 989 { 990 990 if (assembly.IsDefined( 991 991 typeof(TargetFrameworkAttribute), false)) 992 992 { 993 993 TargetFrameworkAttribute targetFramework = 994 994 (TargetFrameworkAttribute)
Changes to readme.htm.
209 209 <h2><b>Version History</b></h2> 210 210 211 211 <p> 212 212 <b>1.0.104.0 - December XX, 2016</b> 213 213 </p> 214 214 <ul> 215 215 <li>Updated to <a href="https://www.sqlite.org/releaselog/3_15_0.html">SQLite 3.15.0</a>.</li> 216 + <li>Add the "%PreLoadSQLite_AssemblyDirectory%", "%PreLoadSQLite_TargetFramework%", and "%PreLoadSQLite_XmlConfigDirectory%" <a href="https://system.data.sqlite.org/index.html/artifact?ci=trunk&filename=Doc/Extra/Provider/environment.html">replacement tokens</a> for use in configuration setting values.</li> 216 217 <li>Prevent the GetByte, GetChar, and GetInt16 methods of the SQLiteDataReader class from throwing exceptions for large integer values. Pursuant to [5535448538]. <b>** Potentially Incompatible Change **</b></li> 217 218 </ul> 218 219 <p> 219 220 <b>1.0.103.0 - September 15, 2016</b> 220 221 </p> 221 222 <ul> 222 223 <li>Updated to <a href="https://www.sqlite.org/releaselog/3_14_2.html">SQLite 3.14.2</a>.</li>
Changes to www/news.wiki.
3 3 <b>Version History</b> 4 4 5 5 <p> 6 6 <b>1.0.104.0 - December XX, 2016</b> 7 7 </p> 8 8 <ul> 9 9 <li>Updated to [https://www.sqlite.org/releaselog/3_15_0.html|SQLite 3.15.0].</li> 10 + <li>Add the "%PreLoadSQLite_AssemblyDirectory%", "%PreLoadSQLite_TargetFramework%", and "%PreLoadSQLite_XmlConfigDirectory%" [https://system.data.sqlite.org/index.html/artifact?ci=trunk&filename=Doc/Extra/Provider/environment.html|replacement tokens] for use in configuration setting values.</li> 10 11 <li>Prevent the GetByte, GetChar, and GetInt16 methods of the SQLiteDataReader class from throwing exceptions for large integer values. Pursuant to [5535448538]. <b>** Potentially Incompatible Change **</b></li> 11 12 </ul> 12 13 <p> 13 14 <b>1.0.103.0 - September 15, 2016</b> 14 15 </p> 15 16 <ul> 16 17 <li>Updated to [https://www.sqlite.org/releaselog/3_14_2.html|SQLite 3.14.2].</li>