Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Jul 5, 2016
1 parent b158469 commit 88194db
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,20 @@
</style>
</head>
<body>
<h2>0.99.2</h2>

<ul>
<li>Included workaround for a C++11 issue in GCC 4.8, contributed by Alex Merry</li>
<li>Fixed operator== so that json() == json(json::object())</li>
<li>Fixed issue with <code>json</code> assignment to initializer list</li>
<li>
<p>Fixed issue with assignment to empty json object with multiple keys, e.g. </p>

<p>json val; <br>
val["key1"]["key2"] = 1; </p>
</li>
</ul>

<h2>0.99.1</h2>

<ul>
Expand Down
5 changes: 5 additions & 0 deletions doc/md/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
------
Expand Down

0 comments on commit 88194db

Please sign in to comment.