From 2bb68af4f84d4e313af0daafaac1568d6ef2a042 Mon Sep 17 00:00:00 2001 From: rechen Date: Fri, 16 Jun 2023 17:33:09 -0700 Subject: [PATCH] Prepare a PyPI release. PiperOrigin-RevId: 541053064 --- CHANGELOG | 11 +++++++++++ pytype/__version__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a4ea32f42..afc16cc0e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +Version 2023.06.16: + +Updates: +* Add partial typing.Self support in type stubs. +* Make some minor improvements to pytype's type stub printer. + +Bug fixes: +* Flesh out definition of collections.UserDict. +* Fix timeout in file that constructs a complicated dict of tuples. +* Narrow the type of the matched variable in case branches with class matches. + Version 2023.06.02: Updates: diff --git a/pytype/__version__.py b/pytype/__version__.py index d350a9346..d51bb37c6 100644 --- a/pytype/__version__.py +++ b/pytype/__version__.py @@ -1,2 +1,2 @@ # pylint: skip-file -__version__ = '2023.06.02' +__version__ = '2023.06.16'