]> code.delx.au - gnu-emacs-elpa/commitdiff
Make a new release
authorDmitry Gutov <dgutov@yandex.ru>
Thu, 23 Jun 2016 01:00:47 +0000 (04:00 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Thu, 23 Jun 2016 01:00:47 +0000 (04:00 +0300)
NEWS.md
js2-mode.el
tests/externs.el
tests/indent.el
tests/parser.el

diff --git a/NEWS.md b/NEWS.md
index de28639e768339fd94fd8bd78adbb60e844871f9..87e9d726a15a349a5ac1e852b93a05fc8a11447e 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,9 +1,12 @@
 # History of user-visible changes
 
-## Next
+## 2016-06-23
 
+* New variable `js2-mode-assume-strict`, for use with ES6 modules.
+* Support for JSDoc @callback, @func and @method tags.
 * Object properties are highlighted using a different face:
   `js2-object-property`, which has no color by default.
+* Experimental support for object rest/spread ECMAScript proposal.
 * `js2-getter-setter-node` is renamed to `js2-method-node`, together with
   its related functions.  It already handles generator methods, and we
   added support for async methods (see below), so the old name would get
@@ -13,7 +16,7 @@
 * New mode: `js2-jsx-mode`, deriving from `js2-mode`.  Supports indentation of
   JSXElement expressions wrapped within parentheses or as function arguments.
   Indentation is customizable via `sgml-attribute-offset`.
-* Experimental support for ES7 stage 3 async/await.
+* Experimental support for async/await ECMAScript proposal.
 
 ## 20150909
 
index 527c639d6a665736f10c8a0a87878ed7e917851a..db61389054121e301135b10c83ad9f50278d8593 100644 (file)
@@ -1,13 +1,13 @@
 ;;; js2-mode.el --- Improved JavaScript editing mode
 
-;; Copyright (C) 2009, 2011-2015  Free Software Foundation, Inc.
+;; Copyright (C) 2009, 2011-2016  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: 20150909
+;; Version: 20160623
 ;; Keywords: languages, javascript
 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
 
index 09a60a9d3f9e89cc817696fecae9415316871c45..75b93cdafbedd5a096a26a731024f8ab2c7ebf3b 100644 (file)
@@ -1,6 +1,6 @@
 ;;; tests/externs.el --- Some tests for js2-mode.
 
-;; Copyright (C) 2009, 2011-2013  Free Software Foundation, Inc.
+;; Copyright (C) 2009, 2011-2014, 2016  Free Software Foundation, Inc.
 
 ;; This file is part of GNU Emacs.
 
index 18b96589b1528f978abf9fde4d472f88cc6b8502..0fabe95637e1686894560ab70bec1b9e86e898ac 100644 (file)
@@ -1,6 +1,6 @@
 ;;; tests/indent.el --- Some tests for js2-mode.
 
-;; Copyright (C) 2009, 2011-2013  Free Software Foundation, Inc.
+;; Copyright (C) 2009, 2011-2016  Free Software Foundation, Inc.
 
 ;; This file is part of GNU Emacs.
 
index 145bcbd10613b7e3ee0266c28d15f597539be211..b4aa68337b5a94dfed74a284c0dc968f6bde7fb6 100644 (file)
@@ -1,6 +1,6 @@
 ;;; tests/parser.el --- Some tests for js2-mode.
 
-;; Copyright (C) 2009, 2011-2013  Free Software Foundation, Inc.
+;; Copyright (C) 2009, 2011-2016  Free Software Foundation, Inc.
 
 ;; This file is part of GNU Emacs.