diff --git a/doc/changes.qbk b/doc/changes.qbk
index 0213c9c..3cfa35b 100644
--- a/doc/changes.qbk
+++ b/doc/changes.qbk
@@ -7,12 +7,22 @@
[section Revision History]
+[section Changes in 1.86.0]
+
+* Added a [link core.pointer_in_range `boost/core/pointer_in_range.hpp`] header with a `pointer_in_range`
+ function template to check if a pointer is within a given range.
+* Fixed `type_name` for abstract classes. ([github_issue 172])
+* Fixed `boost/core/type_name.hpp` compilation error with MSVC with disabled native `wchar_t` type.
+ ([github_issue 173])
+
+[endsect]
+
[section Changes in 1.85.0]
* Added a new [link core.functor `boost/core/functor.hpp`] header with a `functor` class template
for wrapping a raw function into a function object class.
* Changed [link core.null_deleter `null_deleter`], [link core.fclose_deleter `fclose_deleter`]
- and [link.checked_delete checked deleter] definitions so that they don't bring namespace `boost`
+ and [link core.checked_delete checked deleter] definitions so that they don't bring namespace `boost`
into argument-dependent lookup in cases like this:
```
std::unique_ptr< std::FILE, boost::fclose_deleter > p1, p2;
diff --git a/doc/core.qbk b/doc/core.qbk
index bce8975..3398aa8 100644
--- a/doc/core.qbk
+++ b/doc/core.qbk
@@ -20,6 +20,9 @@ or copy at http://boost.org/LICENSE_1_0.txt)
]
]
+[template github_issue[key]'''#'''[key]'''''']
+[template github_pr[key]'''PR#'''[key]'''''']
+
[template simplesect[title]
[block ''''''[title]'''''']]