Skip to content

Commit

Permalink
Created a change log.
Browse files Browse the repository at this point in the history
Don't want to go back beyond the current version.

Got the `README.md` heading sizes organized.

Closes #13.
Closes #26.
  • Loading branch information
flatheadmill committed Jun 28, 2012
1 parent a56594f commit b7c140a
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use the [Amazon API
Reference](http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/index.html?query-apis.html)
to find your way around. Node EC2 calls translate directly to Amazon Query API.

### Synopsis
## Synopsis

An example using
[RunInstances](http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/index.html?ApiReference-query-RunInstances.html) to launch a 32-bit Fedora 17 instance in Virginia.
Expand Down Expand Up @@ -98,7 +98,7 @@ npm install ec2
You can also checkout the source code for using `git`. It has only one
dependency, the wonderful little XML parser `node-xml`.

### Construction
## Initialization

Node EC2 exports a function you can use to build an EC2 function. You can call
it directly from `require("ec2")` to build an `ec2` function configured for your
Expand Down Expand Up @@ -134,7 +134,7 @@ The region identifiers are one of the following.
If you do not specify `endpoint` when you construct your `ec2` function, you can
specify it later when you construct your `ec2` function.

### Invocation
## Invocation

Invoke **Node EC2** by passing a command name, command parameters in an object,
and a callback.
Expand Down Expand Up @@ -210,7 +210,7 @@ ec2east("RunInstances", parameters, function (error, eastern) {
});
```

### Why So Simple?
## Why So Simple?

Another implementation might set out to define a library of functions, one for
each function provided by the AWS EC2 API. This way, you could validate the
Expand Down Expand Up @@ -329,3 +329,20 @@ $ ec2 RunInstances ImageId ami-08d97e61 KeyName launch_key MinCount 1 MaxCount 1
]
}
```

## Change Log

Changes for each release since 0.1.1.

### Version 0.1.1 —

* Publish a version without junk directories that defeat NPM. #9. #23.
* Create change log. #13.
* Specify fully qualified hostname for endpoint. #25. #3
* Rewrite `README.md` to describe one function API.
* Delete `Cakefile`. #16.
* Convert to JavaScript. #10.

Versions prior to 0.1.1 were not tracked very well in `git`. My fault, but I'm
not feeling the guilt necessary to perform the `git` forensics necessary to
reconstruct a change log.

0 comments on commit b7c140a

Please sign in to comment.