branch: elpa/yaml-mode
commit fc5e1c58f94472944c4aa838f00f6adcac6fa992
Author: Vasilij Schneidermann <[email protected]>
Commit: Vasilij Schneidermann <[email protected]>
Bump version, summarize changes
---
Changes | 16 ++++++++++++++--
Makefile | 2 +-
yaml-mode.el | 4 ++--
3 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/Changes b/Changes
index 5eaf7d3..38daa6e 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,16 @@
+0.0.15 Mon Nov 9 11:22:02 CET 2020
+ * Fix propertization for lists of dicts with literal block (Ben
+ Strutt)
+ * Exclude newline from `yaml-nested-map-re` (Vasilij
+ Schneidermann)
+ * Fix indent after comment line (Adam Hess)
+ * Speed up syntax-propertize-function in files with large JSON
+ strings (Dmitry Gutov)
+ * Fix maintainer email (Vasilij Schneidermann)
+ * Fix typos (Jonas Bernoulli, Damien Cassou)
0.0.14 Tue Jun 25 19:21:12 CET 2019
- * Adjust filling in comment to behave as in text modes (Tim Showalter)
+ * 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ä)
@@ -9,7 +20,8 @@
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)
+ * Derive from text-mode, adjustments to major mode definition
+ (wasamasa)
* Inclusion of longstanding PRs (wasamasa)
* Improved comment highlighting (wasamasa)
* Add *.raml to auto-mode-alist (Ville Skyttä)
diff --git a/Makefile b/Makefile
index 2022604..cff86ba 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION=0.0.14
+VERSION=0.0.15
EMACS = emacs
PREFIX = /usr/local
INSTALLLIBDIR = $(PREFIX)/share/emacs/site-lisp
diff --git a/yaml-mode.el b/yaml-mode.el
index 97ddff3..50d790b 100644
--- a/yaml-mode.el
+++ b/yaml-mode.el
@@ -7,7 +7,7 @@
;; Maintainer: Vasilij Schneidermann <[email protected]>
;; Package-Requires: ((emacs "24.1"))
;; Keywords: data yaml
-;; Version: 0.0.14
+;; Version: 0.0.15
;; 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.14" "Version of `yaml-mode'.")
+(defconst yaml-mode-version "0.0.15" "Version of `yaml-mode'.")
(defconst yaml-blank-line-re "^ *$"
"Regexp matching a line containing only (valid) whitespace.")