diff options
author | metagn <metagngn@gmail.com> | 2022-09-14 21:14:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 14:14:58 -0400 |
commit | 79afee868d784eb90972deb3ea89c96702585968 (patch) | |
tree | 65724d3c2ceb13ee5e4cf53a40028b7741da7c4b /changelog.md | |
parent | a73ae3e066caecb7a891de87cf7c004805f96ff0 (diff) | |
download | Nim-79afee868d784eb90972deb3ea89c96702585968.tar.gz |
partial revert and redesign of #19814, changelog (#20341)
* conservative partial revert of #19814 * fix * revert tssl * revert azure CI change * keep azure, revert version range * fully revert CI, add changelog * useOpenssl3 as separate define, .3 is a version
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 7945120ff..8d574f2b0 100644 --- a/changelog.md +++ b/changelog.md @@ -36,9 +36,13 @@ - [Overloadable enums](https://nim-lang.github.io/Nim/manual_experimental.html#overloadable-enum-value-names) are no longer experimental. +- Static linking against OpenSSL versions below 1.1, previously done by + setting `-d:openssl10`, is no longer supported. + ## Standard library additions and changes [//]: # "Changes:" +- OpenSSL version 3 is now supported by setting either `-d:sslVersion=3` or `-d:useOpenssl3`. - `macros.parseExpr` and `macros.parseStmt` now accept an optional filename argument for more informative errors. - Module `colors` expanded with missing colors from the CSS color standard. |