branch: master
commit 0cda39255827f283e7578cd469ae42daad9556a2
Author: Dmitry Gutov <[email protected]>
Commit: Dmitry Gutov <[email protected]>
Make a new release
---
NEWS.md | 7 +++++--
js2-mode.el | 4 ++--
tests/externs.el | 2 +-
tests/indent.el | 2 +-
tests/parser.el | 2 +-
5 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/NEWS.md b/NEWS.md
index de28639..87e9d72 100644
--- 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
diff --git a/js2-mode.el b/js2-mode.el
index 527c639..db61389 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -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 <[email protected]>
;; mooz <[email protected]>
;; Dmitry Gutov <[email protected]>
;; 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"))
diff --git a/tests/externs.el b/tests/externs.el
index 09a60a9..75b93cd 100644
--- a/tests/externs.el
+++ b/tests/externs.el
@@ -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.
diff --git a/tests/indent.el b/tests/indent.el
index 18b9658..0fabe95 100644
--- a/tests/indent.el
+++ b/tests/indent.el
@@ -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.
diff --git a/tests/parser.el b/tests/parser.el
index 145bcbd..b4aa683 100644
--- a/tests/parser.el
+++ b/tests/parser.el
@@ -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.