document changes
This commit is contained in:
parent
d1ec844cc6
commit
2a1e426964
@ -34,6 +34,7 @@ same results as the original ``jsmin.c``. It differs in the following ways:
|
||||
- Newline characters are not allowed inside string and regex literals, except
|
||||
for line continuations in string literals (ECMA-5).
|
||||
- "return /regex/" is recognized correctly.
|
||||
- Line terminators after regex literals are handled more sensibly
|
||||
- "+ +" and "- -" sequences are not collapsed to '++' or '--'
|
||||
- Newlines before ! operators are removed more sensibly
|
||||
- Comments starting with an exclamation mark (``!``) can be kept optionally
|
||||
|
12
docs/CHANGES
12
docs/CHANGES
@ -1,10 +1,18 @@
|
||||
Changes with version
|
||||
|
||||
*) Benchmark updates, dropped slimit benchmarks, because of installation
|
||||
trouble
|
||||
|
||||
*) Handle line terminators after regex literals more sensible
|
||||
|
||||
|
||||
Changes with version 1.0.11
|
||||
|
||||
*) Benchmark updates
|
||||
|
||||
*) Lift max restrictions for CPython and Jython as well.
|
||||
*) Lifted max restrictions for CPython and Jython as well.
|
||||
|
||||
*) Lift max restrictions for pypy versions. Added pypy3 support.
|
||||
*) Lifted max restrictions for pypy versions. Added pypy3 support.
|
||||
Submitted by https://github.com/tony
|
||||
|
||||
|
||||
|
@ -17,6 +17,7 @@ same results as the original ``jsmin.c``. It differs in the following ways:
|
||||
- Newline characters are not allowed inside string and regex literals, except
|
||||
for line continuations in string literals (ECMA-5).
|
||||
- "return /regex/" is recognized correctly.
|
||||
- Line terminators after regex literals are handled more sensibly
|
||||
- "+ +" and "- -" sequences are not collapsed to '++' or '--'
|
||||
- Newlines before ! operators are removed more sensibly
|
||||
- Comments starting with an exclamation mark (``!``) can be kept optionally
|
||||
|
@ -36,6 +36,7 @@ following ways:
|
||||
- Newline characters are not allowed inside string and regex literals, except
|
||||
for line continuations in string literals (ECMA-5).
|
||||
- "``return /regex/``" is recognized correctly.
|
||||
- Line terminators after regex literals are handled more sensibly.
|
||||
- "``+ +``" and "``- -``" sequences are not collapsed to '``++``' or
|
||||
'``--``'
|
||||
- Newlines before ``!`` operators are removed more sensibly
|
||||
|
@ -39,6 +39,7 @@ same results as the original ``jsmin.c``. It differs in the following ways:
|
||||
- Newline characters are not allowed inside string and regex literals, except
|
||||
for line continuations in string literals (ECMA-5).
|
||||
- "return /regex/" is recognized correctly.
|
||||
- Line terminators after regex literals are handled more sensibly
|
||||
- "+ +" and "- -" sequences are not collapsed to '++' or '--'
|
||||
- Newlines before ! operators are removed more sensibly
|
||||
- Comments starting with an exclamation mark (``!``) can be kept optionally
|
||||
|
Loading…
Reference in New Issue
Block a user