Skip to content

Commit

Permalink
[dist doc] Version bump 0.3.1. Added CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Dec 24, 2010
1 parent 38177c4 commit 3c7e4a7
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## CHANGELOG

### Version 0.3.1

- Allow forever to start any script (not just node) from nodejs code (substack)
- Array shortcut to set command and options (substack)
- Check for scripts with fs.stat before running them (indexzero)
- Improved how *.fvr and *.pid files are managed by Forever CLI (indexzero)
- Ability to delete all historical logs from CLI via 'cleanlogs' (indexzero)
- Ability to stop script by name -- stops ALL scripts with that name. (indexzero)
- Display logfile in 'forever list'. (indexzero)
- Use process.kill() instead of exec('kill'). (indexzero)
- Emit 'save' event when persisting to disk. (indexzero)
- Emit 'start' event when starting a forever child (indexzero)
- Remove 'auto-save' feature from Forever.start() (indexzero)

#### Breaking Changes

- Push options hierarchy up one level. e.g. Forever.options.silent is now Forever.silent (indexzero)
- Only 'error' event now emits with an error. All other events simply emit data (indexzero)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Returns a list of metadata objects about each process that is being run using fo
### forever.cleanup ()
Cleans up any extraneous forever *.pid or *.fvr files that are on the target system. This method returns an EventEmitter that raises the 'cleanUp' event when complete.

### forever.cleanLogsSync
### forever.cleanLogsSync (processes)
Removes all log files from the root forever directory that do not belong to current running forever processes.

## Run Tests
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "forever",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.3.0",
"version": "0.3.1",
"author": "Charlie Robbins <[email protected]>",
"contributors": [
{ "name": "Fedor Indutny", "email": "[email protected]" }
{ "name": "Fedor Indutny", "email": "[email protected]" },
{ "name": "James Halliday", "email": "[email protected]" }
],
"repository": {
"type": "git",
Expand Down

0 comments on commit 3c7e4a7

Please sign in to comment.