Release 0.2

Yes, one day later. There were a couple of breaking changes that became
clearly needed. I didn't expect this to get as much traffic as it has,
so I'd like to get these changes made before too many people rely on the
old behavior. See the CHANGELOG for specific API changes.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff9229b..8c2b932 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@
 for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
 
 
-## Unreleased
+## [0.2.0] - 2015-11-30
 
 ### Added
 
diff --git a/README.md b/README.md
index 83650cf..c6e5c5f 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,6 @@
 Getting Started
 ---------------
 
-### Note: This guide applies to the master branch. The guide for the latest released version can be found [here](https://github.com/sgrif/diesel/tree/v0.1.0#getting-started).
-
 Before you can do anything, you'll first need to set up your table. You'll want
 to specify the columns and tables that exist using the [`table!` macro][table]
 Once you've done that, you can already start using the query builder, and
diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml
index 5231a4f..af2fe12 100644
--- a/diesel/Cargo.toml
+++ b/diesel/Cargo.toml
@@ -1,13 +1,13 @@
 [package]
 name = "diesel"
-version = "0.1.0"
+version = "0.2.0"
 authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
 license = "MIT"
 description = "A safe, extensible ORM and Query builder"
 documentation = "http://sgrif.github.io/diesel/diesel/index.html"
 homepage = "https://github.com/sgrif/diesel"
 repository = "https://github.com/sgrif/diesel"
-keywords = ["orm", "database", "postgres", "postgresql", "sql", "query builder"]
+keywords = ["orm", "database", "postgres", "postgresql", "sql"]
 
 [dependencies]
 libc = "0.2.*"
diff --git a/diesel_codegen/Cargo.toml b/diesel_codegen/Cargo.toml
index 0aa3fa4..b979819 100644
--- a/diesel_codegen/Cargo.toml
+++ b/diesel_codegen/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "diesel_codegen"
-version = "0.1.0"
+version = "0.2.0"
 authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
 license = "MIT"
 build = "build.rs"
@@ -8,8 +8,7 @@
 documentation = "https://github.com/sgrif/diesel/blob/master/diesel_codegen/README.md"
 homepage = "https://github.com/sgrif/diesel/tree/master/diesel_codegen"
 repository = "https://github.com/sgrif/diesel/tree/master/diesel_codegen"
-keywords = ["orm", "database", "postgres", "postgresql",
-            "sql", "query builder"]
+keywords = ["orm", "database", "postgres", "sql", "codegen"]
 
 [build-dependencies]
 quasi_codegen = { verision = "^0.3.8", optional = true }
diff --git a/diesel_codegen/README.md b/diesel_codegen/README.md
index eba6490..2269dad 100644
--- a/diesel_codegen/README.md
+++ b/diesel_codegen/README.md
@@ -13,7 +13,7 @@
 line to your dependencies section in `Cargo.toml`
 
 ```toml
-diesel_codegen = { version = "^0.1.0", default-features = false, features = ["nightly"] }
+diesel_codegen = { version = "^0.2.0", default-features = false, features = ["nightly"] }
 ```
 
 Then you'll need to add two lines to the root of your crate.
@@ -33,7 +33,7 @@
 build-dependencies.
 
 ```toml
-diesel_codegen = "^0.1.0"
+diesel_codegen = "^0.2.0"
 syntex = "^0.22.0"
 ```