Skip to content

Commit 9e04ecf

Browse files
committed
update docs, bump version
1 parent 08ee42b commit 9e04ecf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ plan.target('production', [
204204
]);
205205

206206
// run with `fly dynamic-hosts`
207-
plan.target('dynamic-hosts', function(done) {
207+
plan.target('dynamic-hosts', function(done, runtime) {
208208
var AWS = require('aws-sdk');
209209
AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
210210
var ec2 = new AWS.EC2();
@@ -268,7 +268,7 @@ multiple hosts. Passing an `Error` object will immediately abort the current
268268
flightplan.
269269

270270
```javascript
271-
plan.target('dynamic-hosts', function(done) {
271+
plan.target('dynamic-hosts', function(done, runtime) {
272272
var AWS = require('aws-sdk');
273273
AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
274274
var ec2 = new AWS.EC2();

lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ function Flightplan() {
222222
* flightplan.
223223
*
224224
* ```javascript
225-
* plan.target('dynamic-hosts', function(done, options) {
225+
* plan.target('dynamic-hosts', function(done, runtime) {
226226
* var AWS = require('aws-sdk');
227227
* AWS.config.update({accessKeyId: '...', secretAccessKey: '...'});
228228
* var ec2 = new AWS.EC2();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flightplan",
33
"description": "Library for streamlining application deployment or systems administration tasks",
4-
"version": "0.6.14",
4+
"version": "0.6.15",
55
"author": "Patrick Stadler <[email protected]>",
66
"keywords": [
77
"deploy",

0 commit comments

Comments
 (0)