From 77d8a903ee3f1e11ee35c728c8328832a453a9dc Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Wed, 18 Nov 2020 09:55:35 +0000 Subject: [PATCH] bump version to 0.3.14 (#420) * bump version to 0.3.14 * add whitespace --- CHANGELOG.md | 10 ++++++++++ libcst/_version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e15903ba1..dd0d1673b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.3.14 - 2020-11-18 + +## Fixed +- Fix is_annotation for types used in classdef base and assign value [#406](https://github.com/Instagram/LibCST/pull/406) +- Visit concatenated f-strings during scope analysis [#411](https://github.com/Instagram/LibCST/pull/411) +- Correct handling of walrus operator in function args [#417](https://github.com/Instagram/LibCST/pull/417) +- Allow generator expressions in f-strings [#419](https://github.com/Instagram/LibCST/pull/419) +- Keep track of assignment/access ordering during scope analysis [#413](https://github.com/Instagram/LibCST/pull/413) +- Handle string type references in cast() during scope analysis [#418](https://github.com/Instagram/LibCST/pull/418) + # 0.3.13 - 2020-10-12 ## Fixed diff --git a/libcst/_version.py b/libcst/_version.py index e00f3a619..fa483e919 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.13" +LIBCST_VERSION: str = "0.3.14"