diff --git a/History.md b/History.md
index 9719ea237a..7ff2c5916f 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,11 @@
+0.6.0 / 2012-02-07
+==================
+
+* *Important:* `$(...).html()` now returns inner HTML, which is in line with the jQuery spec
+* `$.html()` returns the full HTML string. `$.html([cheerioObject])` will return the outer(selected element's tag) and inner HTML of that object
+* Fixed bug that prevented HTML strings with depth (eg. `append("
")`) from getting `parent`, `next`, `prev` attributes.
+* Halted [htmlparser2](https://github.com/FB55/node-htmlparser) at v2.2.2 until single attributes bug gets fixed.
+
0.5.1 / 2012-02-05
==================
diff --git a/package.json b/package.json
index afedf3a39b..e8f84b4ae7 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"name": "cheerio",
"description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server",
"keywords": ["htmlparser", "jquery", "selector", "scraper"],
- "version": "0.5.2",
+ "version": "0.6.0",
"repository": {
"type": "git",
"url": "git://github.com/MatthewMueller/cheerio.git"