Skip to content

Commit

Permalink
[release] Bump LibCST to new release 0.3.6 (#300)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

Co-authored-by: jimmylai <[email protected]>
  • Loading branch information
josieesh and jimmylai authored May 28, 2020
1 parent b9d4629 commit 666247a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion libcst/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 666247a

Please sign in to comment.