Skip to content

Commit 88194db

Browse files
committed
Docs
1 parent b158469 commit 88194db

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

Changelog.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,20 @@
468468
</style>
469469
</head>
470470
<body>
471+
<h2>0.99.2</h2>
472+
473+
<ul>
474+
<li>Included workaround for a C++11 issue in GCC 4.8, contributed by Alex Merry</li>
475+
<li>Fixed operator== so that json() == json(json::object())</li>
476+
<li>Fixed issue with <code>json</code> assignment to initializer list</li>
477+
<li>
478+
<p>Fixed issue with assignment to empty json object with multiple keys, e.g. </p>
479+
480+
<p>json val; <br>
481+
val["key1"]["key2"] = 1; </p>
482+
</li>
483+
</ul>
484+
471485
<h2>0.99.1</h2>
472486

473487
<ul>

doc/md/Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
- Included workaround for a C++11 issue in GCC 4.8, contributed by Alex Merry
55
- Fixed operator== so that json() == json(json::object())
6+
- Fixed issue with `json` assignment to initializer list
7+
- Fixed issue with assignment to empty json object with multiple keys, e.g.
8+
9+
json val;
10+
val["key1"]["key2"] = 1;
611

712
0.99.1
813
------

0 commit comments

Comments
 (0)