From: Dmitry Gutov Date: Mon, 2 Feb 2015 03:10:26 +0000 (+0200) Subject: Bump the version and update NEWS X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/7558a961a03b3a9d26fafc69d9665e4aadf47738 Bump the version and update NEWS --- diff --git a/NEWS.md b/NEWS.md index a1a9006f4..eea51d38f 100644 --- 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: diff --git a/js2-mode.el b/js2-mode.el index 81339037c..6ab7cb90b 100644 --- a/js2-mode.el +++ b/js2-mode.el @@ -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 ;; mooz ;; Dmitry Gutov ;; 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"))