For you who are interessed by SQLite keeping moving forward here is what D. R. Hipp posted for your information:
Here is a quick summary of the changes and enhancements to SQLite during2013. The comparison is between trunk versions,The amalgamation source file grew in side from 137619 lines to 145010lines, or 4868834 bytes to 5125216 bytes. Excluding comments the size grewfrom 82156 lines to 87537 lines. That's between 5% to 7% growth in sourcecode, depending on how you measure. Approximately one source code line outof every five changed during 2013 for a 20% code churn.The compiled binary (gcc 4.8.1 with -Os on x64) grew from 412365 to 433963bytes, or about 5%.Running a typical mix of SQL statements (as implemented by thehttp://www.sqlite.org/src/artifact/7130d2cb?ln test program), SQLite uses15.5% fewer CPU operations to do the same task as it did one year ago, asmeasured by valgrind. Real-time performance is about 12% faster accordingto that same benchmark running on Ubuntu 13.10, x64.There were 737 trunk check-ins during 2013, or about two check-ins perday. There were an additional 924 check-ins on branches, for a total of1661 check-ins. 416 files were changed in some way or another. 24216lines were inserted and 12744 lines deleted, according to diffstat. Theabove is for the main source tree only. There are many, many otherenhancements to the documentation and test suites.The following releases occurred during 2013:2013-01-09: 3.7.15.22013-03-18: 3.7.162013-03-29: 3.7.16.12013-04-12: 3.7.16.22013-05-20: 3.7.172013-08-26: 3.8.02013-08-29: 3.8.0.12013-09-03: 3.8.0.22013-10-17: 3.8.12013-12-06: 3.8.2Major new features added in 2013 include:1. Memory-mapped I/O: http://www.sqlite.org/mmap.html2. The next-generation query planner:3. Partial indices: http://www.sqlite.org/partialindex.html4. WITHOUT ROWID tables: http://www.sqlite.org/withoutrowid.htmlNew PRAGMAs:1. PRAGMA foreign_key_check;2. PRAGMA application_id;3. PRAGMA defer_foreign_keys;4. PRAGMA cache_spill;5. PRAGMA query_only;6. PRAGMA soft_heap_limit;New SQL functions:1. printf() -- to appear in version 3.8.32. unlikely()3. likelihood()4. unicode()5. char()New C-language APIs:1. sqlite3_cancel_auto_extension()2. sqlite3_strglob()New tested and supported extensions added to the source tree:1. The approximate_match virtual table:2. The transitive_closure virtual table:3. The ieee754() SQL function:4. The next_char() SQL function: www.sqlite.org/src/artifact/35c8b8ba5. The percentile() SQL function: www.sqlite.org/src/artifact/bcbee3c6. The regexp() SQL function:7. The rot13() SQL function: http://www.sqlite.org/src/artifact/1ac6f95f8. The spellfix1 virtual table: http://www.sqlite.org/spellfix1.html9. The tointeger() and toreal() SQL functions:10. The wholenumber virtual table: www.sqlite.org/src/artifact/784b1254In addition to the above, there are countless new test cases and minorfeature and performance enhancements.Our goal is to maintain this aggressive pace of innovation and enhancementin SQLite throughout 2014 and beyond.Happy New Year to all.--D. Richard Hippdrh@sqlite.org
The official website is the best place to discover new features, additions and extra VFS.