From 507096250fcd44a1e427f660ffed15ad82f4e3e9 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Wed, 12 Jan 2022 17:02:28 -0800 Subject: [PATCH] prepare release 0.6.0 (#413) --- docs/changelog.md | 10 +++++++++- setup.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 432ed584..081d8cee 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,7 +1,15 @@ # Changelog -## Unreleased +## Version 0.6.0 (January 12, 2022) +Release highlights: +- Support for configuration through `pyproject.toml`. The old + configuration mechanism will be removed in the next release. +- Support for experimental new type evaluation mechanism, providing + a more powerful replacement for overloads. +- Support for suggesting annotations for unannotated code. + +Full changelog: - Support generic type evaluators (#409) - Implement return annotation behavior for type evaluation functions (#408) diff --git a/setup.py b/setup.py index 0d41ff9a..6ca0a76d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools.extension import Extension -VERSION = "0.5.0" +VERSION = "0.6.0" # Used in internal packaging system. if "SANTA_PACKAGE_VERSION" in os.environ: VERSION = "%s.%s" % (VERSION, os.environ["SANTA_PACKAGE_VERSION"])