All Versions
52
Latest Version
Avg Release Cycle
81 days
Latest Release
1236 days ago

Changelog History
Page 5

  • v0.0.12 Changes

    March 24, 2015
    • ⚡️ Updates to track rustc stabilization.
  • v0.0.11 Changes

    March 12, 2015
    • Reexport sqlite3_stmt from libsqlite3-sys for easier impl-ing of ToSql and FromSql.
    • ⚡️ Updates to track latest rustc changes.
    • ⚡️ Update dependency versions.
  • v0.0.10 Changes

    February 23, 2015
    • 💥 BREAKING CHANGE: open now expects a Path rather than a str. There is a separate open_in_memory constructor for opening in-memory databases.
    • ➕ Added the ability to load SQLite extensions. This is behind the load_extension Cargo feature, because not all builds of sqlite3 include this ability. Notably the default libsqlite3 that ships with OS X 10.10 does not support extensions.
  • v0.0.9 Changes

    February 13, 2015
    • ⚡️ Updates to track latest rustc changes.
    • Implement standard Error trait for SqliteError.
  • v0.0.8 Changes

    February 04, 2015
    • ⚡️ Updates to track latest rustc changes.
  • v0.0.7 Changes

    January 20, 2015
    • 👉 Use external bitflags from crates.io.
  • v0.0.6 Changes

    January 10, 2015
    • ⚡️ Updates to track latest rustc changes (1.0.0-alpha).
    • Add query_row_safe, a SqliteResult-returning variant of query_row.
  • v0.0.5 Changes

    January 07, 2015
    • ⚡️ Updates to track latest rustc changes (closure syntax).
    • ⚡️ Updates to track latest rust stdlib changes (std::c_str -> std::ffi).
  • v0.0.4 Changes

    January 05, 2015
    • ⚡️ Updates to track latest rustc changes.
  • v0.0.3 Changes

    December 23, 2014
    • ⚡️ Updates to track latest rustc changes.
    • Add call to sqlite3_busy_timeout.