From 6f9a12c538bd2db9f3d6ff0618711542f1adfef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20M=C3=A9ndez=20Bravo?= Date: Mon, 17 Aug 2020 10:58:14 -0700 Subject: [PATCH] Bump to version 0.3.10 (#376) (cherry picked from commit aa1f7ced5d55ff059868964f26e0621a7afd5332) --- CHANGELOG.md | 26 +++++++++++++++++++++----- libcst/_version.py | 2 +- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f936ef82..ee5756176 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,29 @@ +# 0.3.10 - 2020-09-17 + +## Added +- Handle string annotations in ScopeProvider [#373](https://github.com/Instagram/LibCST/pull/373) +- Add is_annotation subtype for Access inreferences. [#372](https://github.com/Instagram/LibCST/pull/372) + +## Updated +- Call pyre query with noninteractive logging [#371](https://github.com/Instagram/LibCST/pull/371) +- Replace matchers with explicit visitation in gatherers [#366](https://github.com/Instagram/LibCST/pull/366) +- Include missing test data in install [#365](https://github.com/Instagram/LibCST/pull/365) + +## Fixed +- Spaces around walrus operator are not required [#368](https://github.com/Instagram/LibCST/pull/368) +- SaveMachedNode now matches with trailing empty wildcards [#356](https://github.com/Instagram/LibCST/pull/356) +- Correctly extract wildcard matchers [#355](https://github.com/Instagram/LibCST/pull/355) + # 0.3.9 - 2020-09-07 ## Added - - Support string type annotations in RemoveUnusedImports [#353](https://github.com/Instagram/LibCST/issues/353) - - Add scope to ImportAlias [#350](https://github.com/Instagram/LibCST/issues/350) - - Add scope to ClassDef [#349](https://github.com/Instagram/LibCST/issues/349) + - Support string type annotations in RemoveUnusedImports [#353](https://github.com/Instagram/LibCST/pull/353) + - Add scope to ImportAlias [#350](https://github.com/Instagram/LibCST/pull/350) + - Add scope to ClassDef [#349](https://github.com/Instagram/LibCST/pull/349) ## Fixed - - Fixed all pyre related errors [#360](https://github.com/Instagram/LibCST/issues/360) - - Fixed enclosing attribute for attributes in call arguments [#362](https://github.com/Instagram/LibCST/issues/362) + - Fixed all pyre related errors [#360](https://github.com/Instagram/LibCST/pull/360) + - Fixed enclosing attribute for attributes in call arguments [#362](https://github.com/Instagram/LibCST/pull/362) # 0.3.8 - 2020-07-22 diff --git a/libcst/_version.py b/libcst/_version.py index 2adb8c1c9..343c1bb28 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.9" +LIBCST_VERSION: str = "0.3.10"