Ver código fonte

Version 3.11

Ryan C. Thompson 9 anos atrás
pai
commit
ff44da7414
4 arquivos alterados com 24 adições e 10 exclusões
  1. 17 5
      ChangeLog
  2. 2 2
      ido-completing-read+.el
  3. 3 3
      ido-ubiquitous.el
  4. 2 0
      setversion.sh

+ 17 - 5
ChangeLog

@@ -1,3 +1,14 @@
+2016-02-17  Ryan C. Thompson  <rct@thompsonclan.org>
+
+	* test/ido-ubiquitous-test.el: Significant refactoring of awkward
+	testing code. Tests should now be more robust.
+
+	* ido-completing-read+.el (ido-select-text): Fix an edge case in
+	ido-select-text: when require-match and default are both non-nil,
+	it should be impossible to return an empty string.
+	(ido-cr+-fallback-function): Don't allow ido-ubiquitous to be a
+	fallback for ido-cr+.
+
 2016-01-29  Ryan C. Thompson  <rct@thompsonclan.org>
 
 	* ido-ubiquitous.el (ido-ubiquitous--maybe-update-overrides):
@@ -54,11 +65,12 @@
 
 2015-04-08  Ryan C. Thompson  <rct@thompsonclan.org>
 
-	* Major refactor: split into two packages: ido-completing-read+.el
-	and ido-ubiquitous.el that depends on it. Additionally, some of
-	the customization variables for ido-ubiquitous have been changed
-	for increased flexibility in configuration, and the internals have
-	been rearchitected significantly.
+	* ido-ubiquitous.el: Major refactor. Split into two packages:
+	ido-completing-read+.el and ido-ubiquitous.el that depends on it.
+	Additionally, some of the customization variables for
+	ido-ubiquitous have been changed for increased flexibility in
+	configuration, and the internals have been rearchitected
+	significantly.
 
 2015-01-25  Ryan C. Thompson  <rct@thompsonclan.org>
 

+ 2 - 2
ido-completing-read+.el

@@ -5,7 +5,7 @@
 ;; Filename: ido-completing-read+.el
 ;; Author: Ryan Thompson
 ;; Created: Sat Apr  4 13:41:20 2015 (-0700)
-;; Version: 3.10
+;; Version: 3.11
 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
 ;; URL: https://github.com/DarwinAwardWinner/ido-ubiquitous
 ;; Keywords: ido, completion, convenience
@@ -41,7 +41,7 @@
 ;;
 ;;; Code:
 
-(defconst ido-completing-read+-version "3.10"
+(defconst ido-completing-read+-version "3.11"
   "Currently running version of ido-ubiquitous.
 
 Note that when you update ido-completing-read+, this variable may

+ 3 - 3
ido-ubiquitous.el

@@ -4,11 +4,11 @@
 
 ;; Author: Ryan C. Thompson
 ;; URL: https://github.com/DarwinAwardWinner/ido-ubiquitous
-;; Version: 3.10
+;; Version: 3.11
 ;; Created: 2011-09-01
 ;; Keywords: convenience, completion, ido
 ;; EmacsWiki: InteractivelyDoThings
-;; Package-Requires: ((emacs "24.1") (ido-completing-read+ "3.10") (cl-lib "0.5"))
+;; Package-Requires: ((emacs "24.1") (ido-completing-read+ "3.11") (cl-lib "0.5"))
 ;; Filename: ido-ubiquitous.el
 
 ;; This file is NOT part of GNU Emacs.
@@ -70,7 +70,7 @@
 ;;
 ;;; Code:
 
-(defconst ido-ubiquitous-version "3.10"
+(defconst ido-ubiquitous-version "3.11"
   "Currently running version of ido-ubiquitous.
 
 Note that when you update ido-ubiquitous, this variable may not

+ 2 - 0
setversion.sh

@@ -7,4 +7,6 @@ if [ -n "$TARGET_VERSION" ]; then
          -e "s/((?:defconst|defvar|setq).*-version\s+)\"[0-9.]+\"/\${1}\"$TARGET_VERSION\"/g;" \
          -e "s/(Package-Requires.*\(ido-completing-read\+\s+)\"[0-9.]+\"\)/\${1}\"${TARGET_VERSION}\")/g;" \
          *.el
+else
+    echo "Usage: $0 VERSION_NUMBER"
 fi