Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Preliminary changes for the 3.9.1 patch release. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e2554ac4738e7161f87522be23479d3f |
User & Date: | drh 2015-10-16 16:59:32.999 |
Context
2015-10-16
| ||
17:28 | Add news about 3.9.1 (check-in: c5a13cc8f4 user: drh tags: trunk) | |
16:59 | Preliminary changes for the 3.9.1 patch release. (check-in: e2554ac473 user: drh tags: trunk) | |
11:35 | Fix a typo. "databse" to "database". (check-in: eb3ea9a953 user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <tcl> set nChng 0 proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2015-10-14 (3.9.0)} { <p><b>Policy Changes:</b> <li>The [version numbering conventions] for SQLite are revised to use the emerging standard of [http://semver.org/|semantic versioning]. <p><b>New Features And Enhancements:</b> <li>Added [the json1 extension] module in the source tree, and in the [amalgamation]. | > > > > > > > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <tcl> set nChng 0 proc chng {date desc {options {}}} { global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2015-10-17 (3.9.1)} { <li>Fix [the json1 extension] so that it does <u>not</u> recognize ASCII form-feed as a whitespace character, in order to comply with RFC-7159. Fix for ticket [https://www.sqlite.org/src/info/57eec374ae1d0a1d|57eec374ae1d0a1d] <li>Add a few #ifdef and build script changes to address compilation issues that appeared after the 3.9.0 release. } {patchagainst 1} chng {2015-10-14 (3.9.0)} { <p><b>Policy Changes:</b> <li>The [version numbering conventions] for SQLite are revised to use the emerging standard of [http://semver.org/|semantic versioning]. <p><b>New Features And Enhancements:</b> <li>Added [the json1 extension] module in the source tree, and in the [amalgamation]. |
︙ | ︙ | |||
3880 3881 3882 3883 3884 3885 3886 | hd_resolve "<p><ul>$desc</ul></p>" foreach {key value} $options { if {$key=="patchagainst"} { set c2 $aChng([expr {$i+$value}]) regexp {([-0-9]+) \((3\.\d+\.[.0-9]+)[ a-zA-Z]*\)} [lindex $c2 0] all date vers set d2 [lindex $c2 1] regsub {(<p>[^\n]*\n)?<li>SQLITE_SOURCE_ID.*$} $d2 {} d2 | | | 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 | hd_resolve "<p><ul>$desc</ul></p>" foreach {key value} $options { if {$key=="patchagainst"} { set c2 $aChng([expr {$i+$value}]) regexp {([-0-9]+) \((3\.\d+\.[.0-9]+)[ a-zA-Z]*\)} [lindex $c2 0] all date vers set d2 [lindex $c2 1] regsub {(<p>[^\n]*\n)?<li>SQLITE_SOURCE_ID.*$} $d2 {} d2 hd_resolve "<p><b>Changes carried forward from version $vers ($date):</b></p>" hd_resolve "<p><ul>$d2</ul></p>" } } hd_resolve { <p>A [complete list of SQLite releases] in a single page and a [chronology] are both also available. A detailed history of every |
︙ | ︙ |
Changes to pages/index.in.
︙ | ︙ | |||
83 84 85 86 87 88 89 | </td> <td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td> <td valign="top"> <h3>Current Status</h3> <p><ul> | | | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | </td> <td width="20"></td><td bgcolor="#044a64" width="1"></td><td width="20"></td> <td valign="top"> <h3>Current Status</h3> <p><ul> <li><a href="releaselog/3_9_1.html">Version 3.9.1</a> of SQLite is recommended for all new development. </li> </ul></p> <h3>Common Links</h3> <p><ul> |
︙ | ︙ |