]> code.delx.au - gnu-emacs-elpa/commitdiff
Bump the version and update NEWS
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 2 Feb 2015 03:10:26 +0000 (05:10 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 2 Feb 2015 03:12:17 +0000 (05:12 +0200)
NEWS.md
js2-mode.el

diff --git a/NEWS.md b/NEWS.md
index a1a9006f436e65220197a993cf413bc56081d6f6..eea51d38f7842be489604bce13904f650afc01da 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,20 @@
 # History of user-visible changes
 
+## 20150202
+
+Support for:
+
+* [ES6 modules](http://www.2ality.com/2014/09/es6-modules-final.html).
+* [Short-hand object literals](http://ariya.ofilabs.com/2013/02/es6-and-object-literal-property-value-shorthand.html).
+* [Method definitions](http://ariya.ofilabs.com/2013/03/es6-and-method-definitions.html).
+* ['u' and 'y' RegExp flags](https://mathiasbynens.be/notes/es6-unicode-regex).
+* [Computed property names](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object-initializer).
+* [Class statements and expressions](https://github.com/lukehoban/es6features#classes).
+* [Template strings](http://tc39wiki.calculist.org/es6/template-strings/), including tagged ones.
+
+The variable `js2-allow-keywords-as-property-names` has been
+removed. Instead we check if `js2-language-version` is 180 or highter.
+
 ## 20141115
 
 Support for:
index 81339037c707e6a130d63c1084820fc20507bcc8..6ab7cb90b6a8889a2b992a5b7b815b5d506b0704 100644 (file)
@@ -1,13 +1,13 @@
 ;;; js2-mode.el --- Improved JavaScript editing mode
 
-;; Copyright (C) 2009, 2011-2014  Free Software Foundation, Inc.
+;; Copyright (C) 2009, 2011-2015  Free Software Foundation, Inc.
 
 ;; Author: Steve Yegge <steve.yegge@gmail.com>
 ;;         mooz <stillpedant@gmail.com>
 ;;         Dmitry Gutov <dgutov@yandex.ru>
 ;; URL:  https://github.com/mooz/js2-mode/
 ;;       http://code.google.com/p/js2-mode/
-;; Version: 20141118
+;; Version: 20150202
 ;; Keywords: languages, javascript
 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))