branch: elpa/yaml-mode commit fb17c37c9fffd1ffce624b2bba041be5238fd469 Author: Yoshiki Kurihara <clou...@gmail.com> Commit: Yoshiki Kurihara <clou...@gmail.com>
Bumping version to 0.0.10 --- Changes | 2 ++ Makefile | 2 +- yaml-mode.el | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index fc1b93b..30906f5 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +0.0.10 Mon Aug 25 04:06:50 GMT 2014 + * Remove default C-j binding. (barrkel) 0.0.9 Mon Mar 11 12:43:23 2013 * Fix anchor name can contain '_'. (Monson Shao) * `checkdoc' nits (including the `checkdoc-autoload' extension). diff --git a/Makefile b/Makefile index 12a3407..497735e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.0.9 +VERSION=0.0.10 EMACS = emacs PREFIX = /usr/local INSTALLLIBDIR = $(PREFIX)/share/emacs/site-lisp diff --git a/yaml-mode.el b/yaml-mode.el index 9d3afcc..33b059f 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-2013 Yoshiki Kurihara +;; Copyright (C) 2010-2014 Yoshiki Kurihara ;; Author: Yoshiki Kurihara <clou...@gmail.com> ;; Marshall T. Vandegrift <llas...@gmail.com> ;; Keywords: data yaml -;; Version: 0.0.9 +;; Version: 0.0.10 ;; 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.9" "Version of `yaml-mode'.") +(defconst yaml-mode-version "0.0.10" "Version of `yaml-mode'.") (defconst yaml-blank-line-re "^ *$" "Regexp matching a line containing only (valid) whitespace.")