Skip to content

Commit

Permalink
0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Mar 28, 2015
1 parent f9adc51 commit a5ce647
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
v0.18.0 - March 28, 2015

* 0.18.0 (Nicholas C. Zakas)
* Fix: Mark variables as used in module scope (fixes #2137) (Nicholas C. Zakas)
* Fix: arrow functions need wrapping (fixes #2113) (Nicholas C. Zakas)
* Fix: Don't crash on empty array pattern item (fixes #2111) (Nicholas C. Zakas)
* Fix: Don't error on destructured params (fixes #2051) (Nicholas C. Zakas)
* Docs: Fixing broken links (Ilya Volodin)
* Fix: no-constant-condition should not flag += (fixes #2155) (Nicholas C. Zakas)
* Fix: Ensure piped in code will trigger correct errors (fixes #2154) (Nicholas C. Zakas)
* Fix: block-scoped-var to handle imports (fixes #2087) (Nicholas C. Zakas)
* Fix: no-dupe-args to work with destructuring (fixes #2148) (Nicholas C. Zakas)
* Fix: key-spacing crash on computed properties (fixes #2120) (Brandon Mills)
* Fix: indent crash on caseless switch (fixes #2144) (Brandon Mills)
* Fix: Don't warn about destructured catch params (fixes #2125) (Nicholas C. Zakas)
* Update: Omit setter param from no-unused-vars (fixes #2133) (Nicholas C. Zakas)
* Docs: Cleaning dead links (Ilya Volodin)
* Docs: Moving documentation out of the repository and modifying build scripts (Ilya Volodin)
* Docs: Update link to Documentation (Kate Lizogubova)
* Docs: Adding back deprecated space-unary-word-ops documentation (Ilya Volodin)
* Fix: Unused recursive functions should be flagged (issue2095) (Nicholas C. Zakas)
* Breaking: Remove JSX support from no-undef (fixes #2093) (Nicholas C. Zakas)
* Fix: markVariableAsUsed() should work in Node.js env (fixes #2089) (Nicholas C. Zakas)
* New: Add "always" and "never" options to "one-var" rule. (fixes #1619) (Danny Fritz)
* New: newline-after-var rule (fixes #2057) (Gopal Venkatesan)
* Fix: func-names with ES6 classes (fixes #2103) (Marsup)
* Fix: Add "Error" to the "new-cap" rule exceptions (fixes #2098) (Mickaël Tricot)
* Fix: vars-on-top conflict with ES6 import (fixes #2099) (Gyandeep Singh)
* Docs: Fixed JSON syntax (Sajin)
* New: space-before-function-paren rule (fixes #2028) (Brandon Mills)
* Breaking: rule no-empty also checking for empty catch blocks. (fixes #1841) (Dieter Oberkofler)
* Update: rule camelcase to allow snake_case in object literals. (fixes #1919) (Dieter Oberkofler)
* New: Added option int32Hint for space-infix-ops (fixes #1295) (Kirill Efimov)
* New: no-param-reassign rule (fixes #1599) (Nat Burns)

v0.17.1 - March 17, 2015

* 0.17.1 (Nicholas C. Zakas)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint",
"version": "0.17.1",
"version": "0.18.0",
"author": "Nicholas C. Zakas <nicholas+npm@nczconsulting.com>",
"description": "An AST-based pattern checker for JavaScript.",
"bin": {
Expand Down

0 comments on commit a5ce647

Please sign in to comment.