From 690241332d6a00d668f510da725e6ec750124c46 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 9 Jul 2016 02:40:27 +0200 Subject: [PATCH] Add a changelog for 0.10.0. --- CHANGELOG.rst | 7 +++++++ docs/docs/features.rst | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 13c218d6..7e673b32 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,13 @@ Changelog --------- +0.10.0 (2016-06-) ++++++++++++++++++ + +- Basic type inference for ``yield from`` and ``star unpacking``. +- PEP 484 support (most of the important features of it). Thanks Claude! (@reinhrst) +- Again a lot of internal changes. + 0.9.0 (2015-04-10) ++++++++++++++++++ diff --git a/docs/docs/features.rst b/docs/docs/features.rst index b84f425d..fd5b3bab 100644 --- a/docs/docs/features.rst +++ b/docs/docs/features.rst @@ -34,8 +34,8 @@ Supported Python Features |jedi| supports many of the widely used Python features: - builtins -- multiple returns or yields -- tuple assignments / array indexing / dictionary indexing +- returns, yields, yield from +- tuple assignments / array indexing / dictionary indexing / star unpacking - with-statement / exception handling - ``*args`` / ``**kwargs`` - decorators / lambdas / closures