branch: elpa/yaml-mode commit 5eae0c19568b6947887e4f0bfef74cf58e6ec501 Author: Yoshiki Kurihara <clou...@gmail.com> Commit: Yoshiki Kurihara <clou...@gmail.com>
Changed version to 0.0.9 --- Changes | 4 ++++ Makefile | 2 +- yaml-mode.el | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 7ef838f..78a50b4 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +0.0.9 Mon Mar 11 12:43:23 2013 + * Fix anchor name can contain '_' + * `checkdoc' nits (including the `checkdoc-autoload' extension). + * Enable yaml-mode for *.yaml files. 0.0.8 Tue Feb 28 13:06:42 2012 * Replaced `last-command-char` to `last-command-event` (sugyan) * Ignore *.elc in .gitignore (semperos) diff --git a/Makefile b/Makefile index b8ada03..12a3407 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.0.8 +VERSION=0.0.9 EMACS = emacs PREFIX = /usr/local INSTALLLIBDIR = $(PREFIX)/share/emacs/site-lisp diff --git a/yaml-mode.el b/yaml-mode.el index 9976c64..7cf63cc 100644 --- a/yaml-mode.el +++ b/yaml-mode.el @@ -5,7 +5,7 @@ ;; Author: Yoshiki Kurihara <kurih...@cpan.org> ;; Marshall T. Vandegrift <llas...@gmail.com> ;; Keywords: data yaml -;; Version: 0.0.7 +;; Version: 0.0.9 ;; This file is not part of Emacs @@ -115,7 +115,7 @@ that key is pressed to begin a block literal." ;; Constants -(defconst yaml-mode-version "0.0.7" "Version of `yaml-mode'.") +(defconst yaml-mode-version "0.0.9" "Version of `yaml-mode'.") (defconst yaml-blank-line-re "^ *$" "Regexp matching a line containing only (valid) whitespace.")