diff --git a/.gitignore b/.gitignore
new file mode 100644
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,30 @@
+*.log
+.prep
+
+__*
+
+state
+data/scrap
+
+.DS_Store
+.AppleDouble
+.LSOverride
+Icon
+
+
+# Thumbnails
+._*
+
+# Files that might appear on external disk
+.Spotlight-V100
+.Trashes
+.*
+!.gitignore
+*~
+dist
+cabal-dev
+*.o
+*.hi
+*.chi
+*.chs.h
+.virthualenv
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,4 +1,18 @@
-aws-elastic-transcoder
-======================
+## aws-elastic-transcoder
 
-Extension to the Haskell AWS suite to include the AWS Elastic Transcoder API
+aws-elastic-transcode is an extension to the Haskell AWS suite to
+cover the AWS Elastic Transcoder API.
+
+Check out the Examples forlder for a simple example program to queue up a
+job in the Elastic Transcoder service and also the aws suite for more
+examples and documentation on how to configure the core aws drivers
+needed to use this suite.
+
+Please report bugs/suggestions/help via the
+[github issue tracker](http://github.com/iconnect/aws-elastic-transcoder/issues).
+
+
+### Authors
+
+This library is written and maintained by Chris Dornan
+<chris.dornan@irisconnect.com>.
diff --git a/aws-elastic-transcoder.cabal b/aws-elastic-transcoder.cabal
--- a/aws-elastic-transcoder.cabal
+++ b/aws-elastic-transcoder.cabal
@@ -1,5 +1,5 @@
 Name:                aws-elastic-transcoder
-Version:             0.2.0.0
+Version:             0.2.0.2
 Synopsis:            Haskell suite for the Elastic Transcoder service
 Description:         This suite extends the aws suite for the Amazon Web Services (AWS) to interface the AWS Elastic Transcoder service for transcoding video.
 Homepage:            http://github.com/iconnect/aws-elastic-transcoder
@@ -32,6 +32,10 @@
         Aws.ElasticTranscoder.Commands
         Aws.ElasticTranscoder.Commands.CreateJob
         Aws.ElasticTranscoder.Commands.DeleteJob
+        Aws.ElasticTranscoder.Commands.CreatePreset
+        Aws.ElasticTranscoder.Commands.GetPreset
+        Aws.ElasticTranscoder.Commands.ListPresets
+        Aws.ElasticTranscoder.Commands.DeletePreset
         Aws.ElasticTranscoder.Commands.GetJob
         Aws.ElasticTranscoder.Commands.ListJobsByPipeline
         Aws.ElasticTranscoder.Commands.ListJobsByStatus
