Skip to content

Commit

Permalink
docs: add changelog command to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcorgan committed Oct 8, 2014
1 parent 98890f4 commit c3c2e03
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ CLI for Divshot
* [apps](#apps) - list your apps
* [auth:token](#authtoken) - print out your access token
* [cert](#cert) - upload an SSL certificate
* [changelog](#changelog) - view the cli changelog
* [config](#config) - list, set, or remove keys and values from your app
* [config:add](#configadd) - add a value to the config file
* [config:remove](#configremove) - remove a value from the config file
Expand Down Expand Up @@ -117,6 +118,14 @@ divshot cert [path/to/certificate.crt] [path/to/key.key]

Upload your application's SSL certificate.

### changelog

```
divshot changelog
```

View the Divshot CLI changelog

### config:add

```
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/pull.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var zlib = require('zlib');
var format = require('chalk');

module.exports = function (cli) {
cli.command('pull <> <>', 'download <> <>')
cli.command('pull <environment>', 'download <environment>')
.before('authenticate')
.description('download files from the given environment')
.handler(function (environment, targetDir, done) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "divshot-cli",
"description": "CLI for Divshot",
"version": "1.0.0-rc3",
"version": "1.0.0",
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.0.4",
Expand Down

0 comments on commit c3c2e03

Please sign in to comment.