From f1067438cbf851d24f8fd18ec51b06a8be5dd845 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 1 Feb 2017 11:29:47 +0300 Subject: [PATCH] Version 0.1.9. --- CHANGES | 38 ++++++++++++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 CHANGES diff --git a/CHANGES b/CHANGES new file mode 100644 index 00000000..633a591c --- /dev/null +++ b/CHANGES @@ -0,0 +1,38 @@ + +Changes with nJScript 0.1.9 01 Feb 2017 + + *) Bugfix: global variables were not initialized when nJScript was used + in nginx. + +Changes with nJScript 0.1.8 24 Jan 2017 + + *) Change: the "strict" mode is enforced, variables must be explicitly + declared. + + *) Feature: "for" and "for-in" loops support variable declaration. + + *) Bugfix: global and function scopes have been fixed. + + *) Bugfix: now "for-in" loop does not discard the last value of property + variable. + + *) Bugfix: miscellaneous bugs and segmentation faults have been fixed. + +Changes with nJScript 0.1.7 27 Dec 2016 + + *) Change: the "js_include" directive has been disabled at server and + location levels. + + *) Feature: exponentiation operators. + + *) Bugfix: miscellaneous bugs and segmentation faults have been fixed. + +Changes with nJScript 0.1.6 13 Dec 2016 + + *) Change: the "js_set" directive has been disabled at server and + location levels. + + *) Feature: ES6 Math methods. + + *) Bugfix: miscellaneous bugs and segmentation faults have been fixed. + diff --git a/Makefile b/Makefile index fe54d4fa..0e97cec8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -NJS_VER = 0.1.8 +NJS_VER = 0.1.9 NXT_LIB = nxt -- 2.47.3