From 666247a192e767fa638b943d39643c0f9d6d2f09 Mon Sep 17 00:00:00 2001 From: Josie Eshkenazi Date: Thu, 28 May 2020 16:53:26 -0400 Subject: [PATCH] [release] Bump LibCST to new release 0.3.6 (#300) * Bump LibCST to new release 0.3.6 * Increase version number * Some more fixes to include in CHANGELOG * Update CHANGELOG.md Co-authored-by: jimmylai Co-authored-by: jimmylai --- CHANGELOG.md | 11 ++++++++++- libcst/_version.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb1998415..c4442fb90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.3.6 - 2020-05-27 + +## Added + - Added `ConvertNamedTupleToDataclassCommand` to convert `NamedTuple` class declarations to Python 3.7 `dataclasses` using the `@dataclass(frozen=True)` decorator. [#299](https://github.com/Instagram/LibCST/pull/299) + +## Fixed + - Fixed typo in file name `libcst/codemod/commands/convert_percent_format_to_fstring.py`. [#301](https://github.com/Instagram/LibCST/pull/301) + - Fixed `StopIteration` exception during scope analysis matching on import names. [#302](https://github.com/Instagram/LibCST/pull/302) + # 0.3.5 - 2020-05-12 ## Updated @@ -32,7 +41,7 @@ # 0.3.3 - 2020-03-05 ## Added - - `ByteSpanPositionProvider` provides start offset and length of CSTNode as metadata. + - `ByteSpanPositionProvider` provides start offset and length of CSTNode as metadata. - `get_docstring` helper provides docstring from `Module`, `ClassDef` and `FunctionDef` node types. ## Updated diff --git a/libcst/_version.py b/libcst/_version.py index 5cffd4694..7e23db779 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.5" +LIBCST_VERSION: str = "0.3.6"