branch: elpa/yaml-mode commit 5b4a0db384f996554454b5642e4531c502421de8 Author: Vasilij Schneidermann <m...@vasilij.de> Commit: Vasilij Schneidermann <m...@vasilij.de>
Bump version, summarize changes --- Changes | 10 ++++++++++ Makefile | 2 +- yaml-mode.el | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 374826f..819930b 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,13 @@ +0.0.14 Tue Jun 25 19:21:12 CET 2019 + * Adjust filling in comment to behave as in text modes (Tim Showalter) + * Improve block literal fontification (wasamasa) + * Support escaped quote in a single quoted string (Väinö Järvelä) + * Support double quote in implicit keys (Väinö Järvelä) + * Support non-whitespace preceded apostrophe (Väinö Järvelä) + * Support for apostrophe in words (Väinö Järvelä) + * Don't consider a line a document delimiter if it has + leading whitespace (Jonathan Frederickson) + * Treat alias nodes as punctuation (Wilfred Hughes) 0.0.13 Fri Nov 4 22:23:34 CET 2016 * Derive from text-mode, adjustments to major mode definition (wasamasa) * Inclusion of longstanding PRs (wasamasa) diff --git a/Makefile b/Makefile index 9db39d1..2022604 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=0.0.13 +VERSION=0.0.14 EMACS = emacs PREFIX = /usr/local INSTALLLIBDIR = $(PREFIX)/share/emacs/site-lisp diff --git a/yaml-mode.el b/yaml-mode.el index 9f76c38..b5897c8 100644 --- a/yaml-mode.el +++ b/yaml-mode.el @@ -7,7 +7,7 @@ ;; Maintainer: Vasilij Schneidermann <v.schneiderm...@gmail.com> ;; Package-Requires: ((emacs "24.1")) ;; Keywords: data yaml -;; Version: 0.0.13 +;; Version: 0.0.14 ;; This file is not part of Emacs @@ -117,7 +117,7 @@ that key is pressed to begin a block literal." ;; Constants -(defconst yaml-mode-version "0.0.13" "Version of `yaml-mode'.") +(defconst yaml-mode-version "0.0.14" "Version of `yaml-mode'.") (defconst yaml-blank-line-re "^ *$" "Regexp matching a line containing only (valid) whitespace.")