diff --git a/CHANGELOG.md b/CHANGELOG.md
index 40eafac..e5bd2ac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,26 @@
This document contains details of the various releases and their release dates.
Dates are in the format `yyyy-mm-dd`.
+## 2.0.0 - 2015-12-26
+
+### Fixed parsing HTML identifiers
+
+HTML identifiers are now parsed correctly. This means that for the element
+`` the element name is now "bar" _without_ a namespace prefix ever
+being set. For the element `` the attribute name is now
+"bar:baz" instead of just "baz".
+
+This particular change may break existing applications, hence the version bump
+to 2.0.
+
+See commit 66fc4b1dfcc4b651302c7582f62287d5750dcbfe for more information.
+
+### Slightly improved performance of checking XPath booleans
+
+Performance of checking if certain XPath values are booleans has been improved
+somewhat. See commit 9bb908f8b1f6c72582ae6070d30f8bd8316ec5ad for more
+information.
+
## 1.3.1 - 2015-09-07
### Race condition in the XPath compiler
diff --git a/checksum/oga-2.0.0-java.gem.sha512 b/checksum/oga-2.0.0-java.gem.sha512
new file mode 100644
index 0000000..9e2c642
--- /dev/null
+++ b/checksum/oga-2.0.0-java.gem.sha512
@@ -0,0 +1 @@
+040fe3d53c5386f578d7cd6b1be4931c05d9c6d7ff42b89ddb3936771c2d68e028ecd31449e6a448be475fc06afa210b3bb3256e4b58a9c35bb49318f905623f
\ No newline at end of file
diff --git a/checksum/oga-2.0.0.gem.sha512 b/checksum/oga-2.0.0.gem.sha512
new file mode 100644
index 0000000..cd6d929
--- /dev/null
+++ b/checksum/oga-2.0.0.gem.sha512
@@ -0,0 +1 @@
+3ace7512c849c62e8c6506778adb7151cf6a518e8ed76330caacbf2359791ed46cd9d6660ff57ad3060b50642bce5429d7c3f2063a6b1cf21b8cdc0e7d83e87f
\ No newline at end of file
diff --git a/lib/oga/version.rb b/lib/oga/version.rb
index 0588163..a658e0f 100644
--- a/lib/oga/version.rb
+++ b/lib/oga/version.rb
@@ -1,3 +1,3 @@
module Oga
- VERSION = '1.3.1'
+ VERSION = '2.0.0'
end # Oga