branch: elpa/emacsql commit 2550196816532cbe09a05f7b4023d69e2e073ce6 Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Drop SQLite version requirements. --- README.md | 2 +- emacsql.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1998e8d6c..98027174c5 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ closures. Emacsql has no concept of "TEXT" values; it's all just lisp objects. The lisp object `nil` corresponds 1:1 with `NULL` in the database. -Requires Emacs 24 or later and SQLite 3.7.15 or later. +Requires Emacs 24 or later and SQLite 3 or later. Due to [bad behavior from SQLite on Windows][stderr] Emacsql will *not* signal error messages for invalid statements on this platform. diff --git a/emacsql.el b/emacsql.el index f89546ee36..52b7ea87a6 100644 --- a/emacsql.el +++ b/emacsql.el @@ -74,7 +74,7 @@ (with-temp-buffer (call-process sqlite3 nil (current-buffer) nil "--version") (let ((version (car (split-string (buffer-string))))) - (if (version< version "3.7.15") + (if (version< version "3.0.0") :old-version nil))) (error :cannot-execute)))))