From efe0fdbf31b8f6514b047abcaa2b4e5b279b6350 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Mon, 28 Sep 2020 17:28:07 +0100 Subject: [PATCH] bump version to 0.3.11 (#395) --- CHANGELOG.md | 12 ++++++++++++ libcst/_version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee5756176..afba505c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.3.11 - 2020-09-29 + +## Added +- Implement TypeOf matcher [#384](https://github.com/Instagram/LibCST/pull/384) + +## Updated +- Update return type of ParentNodeProvider to be CSTNode [#377](https://github.com/Instagram/LibCST/pull/377) +- Add source code links to each class/function [#378](https://github.com/Instagram/LibCST/pull/378) + +## Fixed +- Removing an import alias with a trailing standalone comment should preserve the comment [#392](https://github.com/Instagram/LibCST/pull/392) + # 0.3.10 - 2020-09-17 ## Added diff --git a/libcst/_version.py b/libcst/_version.py index 343c1bb28..ba78b6ef8 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.10" +LIBCST_VERSION: str = "0.3.11"