branch: elpa/yaml-mode
commit 9e0702421622b8fbb00b4c95ea3b25af86f74afa
Author: Yoshiki Kurihara <[email protected]>
Commit: Yoshiki Kurihara <[email protected]>
Changed version to 0.0.9
---
Changes | 5 +++++
Makefile | 2 +-
yaml-mode.el | 8 ++++----
3 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/Changes b/Changes
index 7ef838f..fc1b93b 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,8 @@
+0.0.9 Mon Mar 11 12:43:23 2013
+ * Fix anchor name can contain '_'. (Monson Shao)
+ * `checkdoc' nits (including the `checkdoc-autoload' extension).
+ (Samuel Bronson)
+ * Enable yaml-mode for *.yaml files. (Georgi Valkov)
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..66ea331 100644
--- a/yaml-mode.el
+++ b/yaml-mode.el
@@ -1,11 +1,11 @@
;;; yaml-mode.el --- Major mode for editing YAML files
-;; Copyright (C) 2010 Yoshiki Kurihara
+;; Copyright (C) 2010-2013 Yoshiki Kurihara
-;; Author: Yoshiki Kurihara <[email protected]>
+;; Author: Yoshiki Kurihara <[email protected]>
;; Marshall T. Vandegrift <[email protected]>
;; 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.")