SQLite3 v1.3.2 Release Notes

Release Date: 2010-10-30 // over 13 years ago
    • ✨ Enhancements:

      • Windows: build against 3.7.3 version of SQLite3
      • SQLite3::Database can now be open as readonly

      db = SQLite3::Database.new('my.db', :readonly => true)

      • Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse]
    • 🛠 Bugfixes

      • type_translation= works along with Database#execute and a block
      • defined functions are kept in a hash to prevent GC. #7
      • Removed GCC specific flags from extconf.
    • 🗄 DEPRECATIONS

      • SQLite3::Database#type_translation= will be deprecated in the future with no replacement.
      • SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the replacement.