From e0dd6016a54dc2bda8d6df49e10396637b943f06 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Thu, 13 May 2021 15:38:04 +0100 Subject: [PATCH] bump version to 0.3.19 (#484) * bump version to 0.3.19 * Update CHANGELOG.md Co-authored-by: Jimmy Lai Co-authored-by: Jimmy Lai --- CHANGELOG.md | 10 ++++++++++ libcst/_version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 365dbbd1e..fe89ab1f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.3.19 - 2021-05-12 + +# Updated +- Return more specific QNames for assignments [#477](https://github.com/Instagram/LibCST/pull/477) +- Tie accesses from string annotation to the string node [#483](https://github.com/Instagram/LibCST/pull/483) +## Fixed +- Fix leaking processes from TypeInferenceProvider [#474](https://github.com/Instagram/LibCST/pull/474) +- Fix TypeInferenceProvider breakage with empty cache [#476](https://github.com/Instagram/LibCST/pull/476) +- Fix formatting for link to QualifiedName class in docs [#480](https://github.com/Instagram/LibCST/pull/480) + # 0.3.18 - 2021-03-29 ## Added diff --git a/libcst/_version.py b/libcst/_version.py index 4f7f0491e..70304ffb3 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.18" +LIBCST_VERSION: str = "0.3.19"