diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-02-11 13:51:28 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-02-11 13:52:33 +0100 |
commit | 56b18d6af91c83c6fd9c3db28c0a623f66556a62 (patch) | |
tree | 97113ec11b8df895e238b66c4f84c0f1db8add94 | |
parent | ce9d8f7a5a255c0d00a06f0434bb9588d90bc7d6 (diff) |
Add a late changelog note about the `"runtime"` feature.
In hindsight I should've done it when writing it.
Fixes #1712
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a9371a..9d679c27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -167,7 +167,9 @@ Released 2019/11/19. * Added `newtype` enum style, much like `bitfield` but without the bitwise ops (#1677). * Added support for `MaybeUninit` rather than `mem::uninitialized()` (#1666). - * Allowed static linking (#1620). + * Allowed static linking (#1620) behind a feature. Note that **if you're using + `default-features = false`, you probably want to use the `"runtime"` feature + to get the same behavior as before**. ## Changed |