2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-19 04:42:17 +00:00

Update feed/history/boost_1_89_0.qbk with release notes for System

This commit is contained in:
Peter Dimov
2025-12-09 19:59:49 +02:00
parent 53ad9f08cc
commit 62d3c2bf5e

View File

@@ -224,6 +224,13 @@ Please keep the list of libraries sorted in lexicographical order.
* Fix NAN being generated by `beta_distribution`
* Improve the performance of `beta_distribution::operator()`
* [phrase library..[@/libs/system/ System]:]
* The stub compiled library has been removed; System has been header-only since release 1.69.
* This may affect `CMakeLists.txt` files containing `find_package(Boost COMPONENTS system ...)`.
The easiest fix is to just remove `system` from the list of components as it's no longer required.
If compatibility with Boost releases earlier than 1.69 is to be preserved, one can use
`find_package(Boost COMPONENTS ... OPTIONAL_COMPONENTS system)`.
* [phrase library..[@/libs/type_index/ TypeIndex]:]
* [*Initial support for C++20 Modules]. See the docs for more info.