diff --git a/Changelog.html b/Changelog.html
index a7a240d91a..d95f9a3275 100644
--- a/Changelog.html
+++ b/Changelog.html
@@ -468,6 +468,20 @@
+0.99.2
+
+
+- Included workaround for a C++11 issue in GCC 4.8, contributed by Alex Merry
+- Fixed operator== so that json() == json(json::object())
+- Fixed issue with
json
assignment to initializer list
+-
+
Fixed issue with assignment to empty json object with multiple keys, e.g.
+
+json val;
+val["key1"]["key2"] = 1;
+
+
+
0.99.1
diff --git a/doc/md/Changelog.md b/doc/md/Changelog.md
index 7eb89c7b80..9818e2a65e 100644
--- a/doc/md/Changelog.md
+++ b/doc/md/Changelog.md
@@ -3,6 +3,11 @@
- Included workaround for a C++11 issue in GCC 4.8, contributed by Alex Merry
- Fixed operator== so that json() == json(json::object())
+- Fixed issue with `json` assignment to initializer list
+- Fixed issue with assignment to empty json object with multiple keys, e.g.
+
+ json val;
+ val["key1"]["key2"] = 1;
0.99.1
------