From 148883c334a4aa5a0071d1d8aa595a73b3efedac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sta=C5=9B=20Ma=C5=82olepszy?= Date: Fri, 26 Oct 2018 15:29:56 +0200 Subject: [PATCH] Update the Changelog --- spec/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/spec/CHANGELOG.md b/spec/CHANGELOG.md index 9c0a0b7..797835f 100644 --- a/spec/CHANGELOG.md +++ b/spec/CHANGELOG.md @@ -8,6 +8,16 @@ be used in values of `TextElements` and `StringLiterals`. This means all characters in the U+10000 to U+10FFFF range. 🎉 + - Treat backslash (`\`) as a regular character in `TextElements`. (#123) + + Backslash does no longer have special escaping powers when used in + `TextElements`. It's still recognized as special in `StringLiterals`, + however. `StringLiterals` can be used to insert all special-purpose + characters in text. For instance, `{"{"}` will insert the literal opening + curly brace (`{`), `{"\u00A0"}` will insert the non-breaking space, and + `{" "}` can be used to make a translation start or end with whitespace, + which would otherwise by trimmed by `Pattern.` + ## 0.7.0 (October 15, 2018) - Relax the indentation requirement. (#87)