From b1d9199c211e7edf3ea90e9ee77586c783e4b2cc Mon Sep 17 00:00:00 2001 From: Danica Du Date: Mon, 3 Aug 2026 07:42:42 -0700 Subject: [PATCH] Promote discovery extension to stable version 1.0.1 - Remove beta suffix from version (1.0.1b1 -> 1.0.1) - Update classifier to Production/Stable - Add HISTORY.rst entry Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/discovery/HISTORY.rst | 4 ++++ src/discovery/setup.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/discovery/HISTORY.rst b/src/discovery/HISTORY.rst index abbff5a61a7..84fe1482ec5 100644 --- a/src/discovery/HISTORY.rst +++ b/src/discovery/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.0.1 +++++++ +* Promote to stable version. + 1.0.0b1 ++++++ * Initial release. \ No newline at end of file diff --git a/src/discovery/setup.py b/src/discovery/setup.py index 247210aedd5..c707e0501e1 100644 --- a/src/discovery/setup.py +++ b/src/discovery/setup.py @@ -10,12 +10,12 @@ # HISTORY.rst entry. -VERSION = '1.0.1b1' +VERSION = '1.0.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers CLASSIFIERS = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: System Administrators', 'Programming Language :: Python',