From 4f060e7cd1a520b54f97e62a4ee030682cb6d7c6 Mon Sep 17 00:00:00 2001 From: Jimmy Lai Date: Fri, 27 Mar 2020 10:26:42 -0700 Subject: [PATCH] [release] Bump LibCST to new release 0.3.4 --- CHANGELOG.md | 17 +++++++++++++++++ libcst/_version.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ea43d548..6f220e3bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.3.4 - 2020-03-27 + +## Added + - Supported CST parsing for Python 3.0, 3.1 and 3.3. [#261](https://github.com/Instagram/LibCST/pull/261) + - Added `RemoveUnusedImportsCommand` for removing unused import codemod. [#266](https://github.com/Instagram/LibCST/pull/266) + - Added `ApplyTypeAnnotationsVisitor.add_stub_to_context` for apply type annotations from stub modules. [#265](https://github.com/Instagram/LibCST/pull/265) + +## Updated + - Improved exception message of `get_metadata` when MetadataWrapper is not used. [#257](https://github.com/Instagram/LibCST/pull/257) + - New steps for Pyre type check in README.rst which analyzes installed Python sources for better type checking. [#262](https://github.com/Instagram/LibCST/pull/262) + +## Fixed + - Parsed `except(Exception):` correctly while there is no space after except syntax. [#256](https://github.com/Instagram/LibCST/pull/256) + - Fixed `RemoveImportsVisitor` to not remove imports when references still exist. [#264](https://github.com/Instagram/LibCST/pull/264) + - Fixed missing type annotations. [#271](https://github.com/Instagram/LibCST/pull/271) + - `AddImportsVisitor` generates deterministic order for added imports. [#274](https://github.com/Instagram/LibCST/pull/274) + # 0.3.3 - 2020-03-05 ## Added diff --git a/libcst/_version.py b/libcst/_version.py index 6b015bca6..48ad11f79 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.3" +LIBCST_VERSION: str = "0.3.4"