diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1d02e1c..66c8ad6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,19 @@
This document contains details of the various releases and their release dates.
Dates are in the format `yyyy-mm-dd`.
+## 1.0.1 - 2015-05-21
+
+### Encoding quotes in XML
+
+Oga no longer encodes single/double quotes as XML entities when serializing a
+document back to XML. This ensures that input such as `a"b` doesn't
+get turned into `a"b`.
+
+### HTML Entity Encoding
+
+HTML entities are now generated using `pack('U*')` instead of `pack('U')`
+ensuring the correct characters/codepoints are produced.
+
## 1.0.0 - 2015-05-20
This marks the first stable release (API wise) for Oga. It's been quite the ride
diff --git a/checksum/oga-1.0.1-java.gem.sha512 b/checksum/oga-1.0.1-java.gem.sha512
new file mode 100644
index 0000000..4afaebb
--- /dev/null
+++ b/checksum/oga-1.0.1-java.gem.sha512
@@ -0,0 +1 @@
+ff8de4f94210f149ec0eee38f436f4ece68a204b8fdeb062d54275ff3237be1251e265159048ae8859bd4058e4b8a13aeb765c71b2d33ee11cde3eeed08dc6b2
\ No newline at end of file
diff --git a/checksum/oga-1.0.1.gem.sha512 b/checksum/oga-1.0.1.gem.sha512
new file mode 100644
index 0000000..4329ecb
--- /dev/null
+++ b/checksum/oga-1.0.1.gem.sha512
@@ -0,0 +1 @@
+cddad871b652fc12c82017da7902e11513411c59cc91a55937e8bd7e7006390a46c5ef8839869e955c857039f0931bf6d2eb2b896d59c7a64314e40aa8fc5389
\ No newline at end of file
diff --git a/lib/oga/version.rb b/lib/oga/version.rb
index 0acb76b..0c074dd 100644
--- a/lib/oga/version.rb
+++ b/lib/oga/version.rb
@@ -1,3 +1,3 @@
module Oga
- VERSION = '1.0.0'
+ VERSION = '1.0.1'
end # Oga