Skip to content

Commit ce20f3c

Browse files
committed
changelog
1 parent c07325d commit ce20f3c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## 10.0.0 - 2017-04-04
77

8-
**Standard is turning 10.0.0!** 🎉
8+
**`standard` just turned 10.0.0!** 🎉
99

1010
As with every new major release, there are lots of new rules in 10.0.0 designed to
1111
help catch bugs and make programmer intent more explicit.
@@ -20,7 +20,7 @@ considered an error**. It's finally time to update those dusty old APIs!
2020

2121
Deprecated APIs are problematic because they may print warning messages in the
2222
console in recent versions of Node.js. This often confuses users and leads to
23-
unecessary support tickets for project maintainers.
23+
unnecessary support tickets for project maintainers.
2424

2525
Some deprecated APIs are even insecure (or at least prone to incorrect usage) which
2626
can have serious security implications. For that reason, `standard` now prevents
@@ -31,8 +31,8 @@ functions which make programmer intent clearer and work in all currently support
3131
versions of Node.js, including Node.js 4.x. For more background,
3232
[see this Node.js issue](https://github.com/nodejs/node/issues/4660).
3333

34-
We also improved some rules to support common patterns in codebases that use React,
35-
JSX, and Flow.
34+
We also improved some rules to support common patterns in code bases that use
35+
React, JSX, and Flow.
3636

3737
When you upgrade, consider running `standard --fix` to automatically fix some of
3838
the issues caught by this new version.
@@ -47,7 +47,7 @@ the issues caught by this new version.
4747
*(Estimated % of affected standard users, based on test suite in parens)*
4848

4949
- Disallow using deprecated Node.js APIs ([node/no-deprecated-api](https://github.com/mysticatea/eslint-plugin-node/blob/master/docs/rules/no-deprecated-api.md)) [#693](https://github.com/feross/standard/issues/693) (13%)
50-
- Ensures that code always runs without warnings on the lastest versions of Node
50+
- Ensures that code always runs without warnings on the latest versions of Node.js
5151
- Ensures that safe Buffer methods (`Buffer.from()`, `Buffer.alloc()`) are used instead of `Buffer()`
5252
- Enforce callbacks always called with Node.js-style error first ([standard/no-callback-literal](https://github.com/xjamundx/eslint-plugin-standard#rules-explanations)) [#623](https://github.com/feross/standard/issues/623) (3%)
5353
- Functions named `callback` or `cb` must be invoked with `null`, `undefined`, or an `Error` as the first argument

0 commit comments

Comments
 (0)