From 39ff458270c3790f9c283f83522ee5b0f607163d Mon Sep 17 00:00:00 2001 From: Jimmy Lai Date: Mon, 8 Feb 2021 13:57:30 -0800 Subject: [PATCH] Bump version to 0.3.17 (#456) --- CHANGELOG.md | 11 +++++++++++ libcst/_version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52ba005f0..716ce1210 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.3.17 - 2021-02-08 + +## Updated +- Optimization: reduce the number of unused parallel processes [#440](https://github.com/Instagram/LibCST/pull/440) + +## Fixed +- Walrus operator's left hand side now has STORE expression context [#443](https://github.com/Instagram/LibCST/pull/433) +- ApplyTypeAnnotationsVisitor applies parameter annotations even if no return type is declared [#445](https://github.com/Instagram/LibCST/pull/445) +- Work around Windows problem by using dummy pool for `jobs=1` [#436](https://github.com/Instagram/LibCST/pull/436) +- Remove extra unused imports added in other files [#453](https://github.com/Instagram/LibCST/pull/453) + # 0.3.16 - 2020-12-16 ## Added diff --git a/libcst/_version.py b/libcst/_version.py index 7f61e7b8c..b65588513 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.16" +LIBCST_VERSION: str = "0.3.17"