emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/triples d2f69592fb: Fix for incorrectly requiring sqlit


From: ELPA Syncer
Subject: [elpa] externals/triples d2f69592fb: Fix for incorrectly requiring sqlite
Date: Tue, 13 Jun 2023 22:00:27 -0400 (EDT)

branch: externals/triples
commit d2f69592fb7dac3d5c12c01811442c868fda6f3e
Author: Andrew Hyatt <ahyatt@gmail.com>
Commit: Andrew Hyatt <ahyatt@gmail.com>

    Fix for incorrectly requiring sqlite
---
 NEWS.org           | 2 ++
 triples-upgrade.el | 2 +-
 triples.el         | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/NEWS.org b/NEWS.org
index 0d6fa57e20..fbf4ea6f4d 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -1,5 +1,7 @@
 TITLE: Changelog for the triples module for GNU Emacs.
 
+* 0.3.2
+- Remove hard dependency on the sqlite library, which is a problem for emacs 
28 users.
 * 0.3.1
 - Fix issue with issue where duplicate values could interfere with table index 
creation during upgrade, causing type duplication.
 * 0.3
diff --git a/triples-upgrade.el b/triples-upgrade.el
index e07a478b42..529aa8bf9d 100644
--- a/triples-upgrade.el
+++ b/triples-upgrade.el
@@ -27,7 +27,7 @@
 
 (require 'triples)
 (require 'rx)
-(require 'sqlite)
+(require 'sqlite nil t)
 
 (defun triples-upgrade-to-0.3 (db)
   "Upgrade the DB to version 0.3.
diff --git a/triples.el b/triples.el
index 1a5c36dd9b..63848f3719 100644
--- a/triples.el
+++ b/triples.el
@@ -6,7 +6,7 @@
 ;; Homepage: https://github.com/ahyatt/triples
 ;; Package-Requires: ((seq "2.0") (emacs "28.1"))
 ;; Keywords: triples, kg, data, sqlite
-;; Version: 0.3.1
+;; Version: 0.3.2
 ;; This program is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU General Public License as
 ;; published by the Free Software Foundation; either version 2 of the



reply via email to

[Prev in Thread] Current Thread [Next in Thread]