branch: externals/urgrep
commit 8065bb9f5e83e0c51ff64039fdd592567a0dbef6
Author: Jim Porter <jporterb...@gmail.com>
Commit: Jim Porter <jporterb...@gmail.com>

    Update requirements and fix failing MS Windows test
---
 urgrep-tests.el | 7 ++++---
 urgrep.el       | 4 ++--
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/urgrep-tests.el b/urgrep-tests.el
index 6b3f711a77..c9f11edb05 100644
--- a/urgrep-tests.el
+++ b/urgrep-tests.el
@@ -343,12 +343,13 @@
     ;; File wildcard
     (let ((escape (lambda (i) (regexp-quote (shell-quote-argument i)))))
       (should (string-match
-               (concat "^find \\. .*-name " (funcall escape "*.el")
+               (concat "^find \\. .*-i?name " (funcall escape "*.el")
                        " .*grep -F .*-i .*foo")
                (urgrep-command "foo" :tool tool :files "*.el")))
       (should (string-match
-               (concat "^find \\. .*-name " (funcall escape "*.c") " -o -name "
-                       (funcall escape "*.h") " .*grep -F .*-i .*foo")
+               (concat "^find \\. .*-i?name " (funcall escape "*.c")
+                       " -o -i?name " (funcall escape "*.h")
+                       " .*grep -F .*-i .*foo")
                (urgrep-command "foo" :tool tool :files '("*.c" "*.h")))))))
 
 (ert-deftest urgrep-tests-get-tool-default ()
diff --git a/urgrep.el b/urgrep.el
index 50fa492dfc..cd3dcef03b 100644
--- a/urgrep.el
+++ b/urgrep.el
@@ -4,9 +4,9 @@
 
 ;; Author: Jim Porter
 ;; URL: https://github.com/jimporter/urgrep
-;; Version: 0.1
+;; Version: 0.1-dev
 ;; Keywords:
-;; Package-Requires: ((emacs "27"))
+;; Package-Requires: ((emacs "27.1") (project "0.2.0"))
 
 ;; 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

Reply via email to