From cf51c73c09d34fb140f3e89b4443e6afa50edb50 Mon Sep 17 00:00:00 2001 From: Lucia Li Date: Wed, 22 Jul 2020 16:33:38 -0700 Subject: [PATCH] [release] Bump LibCST to new release 0.3.8 --- CHANGELOG.md | 17 +++++++++++++++++ libcst/_version.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a37530d24..45bbc2a21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.3.8 - 2020-07-22 + +## Added + - Handle type subscripts when applying annotations. [#335](https://github.com/Instagram/LibCST/pull/335) + - Added FullRepoManager `cache` property [#330](https://github.com/Instagram/LibCST/pull/330) + - Added optional args for tox commands [#327](https://github.com/Instagram/LibCST/pull/327) + +## Updated + - Only remove trailing comma if the last alias is removed [#334](https://github.com/Instagram/LibCST/pull/334) + +## Fixed + - Fixed inserting imports after module docstring [#343](https://github.com/Instagram/LibCST/pull/343) + - Fixed ParenthesizedWhitespace before params in FuncDef [#342](https://github.com/Instagram/LibCST/pull/342) + - Fixed validation for ImportAlias and Try statements [#340](https://github.com/Instagram/LibCST/pull/340) + - Fixed NotEqual position issue [#325](https://github.com/Instagram/LibCST/pull/325) + - Fixed minor typo in scope_provider.py [#324](https://github.com/Instagram/LibCST/pull/324) + # 0.3.7 - 2020-06-24 ## Added diff --git a/libcst/_version.py b/libcst/_version.py index f04abd90e..87ce5f25a 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.7" +LIBCST_VERSION: str = "0.3.8"