Skip to content

Commit

Permalink
Version 1.5.0 + documentation
Browse files Browse the repository at this point in the history
This changes create version 1.5.0

It includes relase notes and documentation for the new features (-p and -d)
  • Loading branch information
nitriques committed Dec 11, 2014
1 parent 9af2579 commit b6bf3fa
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@ $ npm-check-updates -u
package.json upgraded
```

Check only devDependencies packages for updates:
```
$ npm-check-updates -d
"mocha" can be updated to version 1.12.1
```

Check only production dependencies packages for updates:
```
$ npm-check-updates -p
"request" can be updated from 2.20.x to 2.27.x (Installed: 2.20.0, Latest: 2.27.1)
```

Now simply perform the usual "npm update" and verify that your project
works with the upgraded versions.

Expand All @@ -80,6 +94,8 @@ $ npm-check-updates -f /^((?!gulp-).)*$/
History
--------------

- 1.5
- Add prod and dev only options
- 1.4
- Add package filtering option
- Add mocha as npm test script
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": "npm-check-updates",
"version": "1.4.0",
"version": "1.5.0",
"author": "Tomas Junnonen <[email protected]>",
"description": "Find newer versions of dependencies than what your package.json allows",
"keywords": [
Expand Down

2 comments on commit b6bf3fa

@fxalgrain
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you publish the new version on npm ?

@nitriques
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't, sadly... See: #37

Please sign in to comment.