diff --git a/CHANGELOG.md b/CHANGELOG.md index dd0d1673b..9ac107a0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.3.15 - 2020-12-01 + +## Added +- Support Named Unicode Characters and yield in f-strings [#424](https://github.com/Instagram/LibCST/pull/424) + +## Fixed +- Assignment/access ordering in comprehensions [#423](https://github.com/Instagram/LibCST/pull/423) +- Referencing of remaining objects in cast() [#422](https://github.com/Instagram/LibCST/pull/422) + # 0.3.14 - 2020-11-18 ## Fixed diff --git a/libcst/_version.py b/libcst/_version.py index fa483e919..087521529 100644 --- a/libcst/_version.py +++ b/libcst/_version.py @@ -4,4 +4,4 @@ # LICENSE file in the root directory of this source tree. -LIBCST_VERSION: str = "0.3.14" +LIBCST_VERSION: str = "0.3.15"