From 4a928b0e9448e053ae3b2138d80bf25476e2fd03 Mon Sep 17 00:00:00 2001 From: Josie Eshkenazi Date: Thu, 25 Jun 2020 11:47:45 -0400 Subject: [PATCH] Bump to version 0.3.7 (#321) --- CHANGELOG.md | 16 ++++++++++++++++ libcst/_version.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4442fb90..a37530d24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 0.3.7 - 2020-06-24 + +## Added + - Added `RenameCommand` to rename all instances of a local or imported object to a specified new name. [#308](https://github.com/Instagram/LibCST/pull/308) + +## Updated + - Upgraded Codecov dev dependency to 2.1.4. [#311](https://github.com/Instagram/LibCST/pull/311) + - Enabled Pyre `strict` mode by default. [#313](https://github.com/Instagram/LibCST/pull/313) + +## Fixed + - Fixed `ImportError` under Python 3.9. [#306](https://github.com/Instagram/LibCST/pull/306) + - Fixed `stdout` being plugged into successfully codemod-ed files. [#309](https://github.com/Instagram/LibCST/pull/309) + - Fixed `QualifiedName` retrieval for names with repeated substrings. [#312](https://github.com/Instagram/LibCST/pull/312) + - Fixed default values of keyword-only and positional-only arguments in `ApplyTypeAnnotationsVisitor`. [#314](https://github.com/Instagram/LibCST/pull/314) + - Fixed `ExpressionContextProvider` by giving subscript values a `LOAD`context. [#319](https://github.com/Instagram/LibCST/pull/319) + # 0.3.6 - 2020-05-27 ## Added diff --git a/libcst/_version.py b/libcst/_version.py index 7e23db779..f04abd90e 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.6" +LIBCST_VERSION: str = "0.3.7"