From 189a4c90b44c8892251a561e10c1ff9b017f5e9e Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Sun, 29 Jan 2023 14:12:15 +0000 Subject: [PATCH] Document development status as stable and prepare for 1.0 release Mypy 1.0 is release is going out soon, so let's make mypy_extensions 1.0 as well. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a28b574..5fbcba8 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -version = '0.5.0-dev' +version = '1.0.0-dev' description = 'Experimental type system extensions for programs checked with the mypy typechecker.' long_description = ''' Mypy Extensions @@ -11,7 +11,7 @@ '''.lstrip() classifiers = [ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License',