From d6a70cbacc31f144577083495d10f1859a91c33c Mon Sep 17 00:00:00 2001 From: Yishi Wang Date: Tue, 15 Oct 2024 12:20:07 +0800 Subject: [PATCH] Revert "{db-up} Update db-up deprecation warning message (#8127)" This reverts commit 65721a9d3f270280d7e1b253df72eb4b21fa054b. --- src/db-up/HISTORY.rst | 4 ---- src/db-up/azext_db_up/commands.py | 3 +-- src/db-up/setup.py | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/db-up/HISTORY.rst b/src/db-up/HISTORY.rst index 36e54f2c85c..d380878dd8d 100644 --- a/src/db-up/HISTORY.rst +++ b/src/db-up/HISTORY.rst @@ -2,10 +2,6 @@ Release History =============== -1.0.0b4 -+++++++ -* Update the deprecation message and announce the retirement date - 1.0.0b3 +++++++ * Deprecate this extension diff --git a/src/db-up/azext_db_up/commands.py b/src/db-up/azext_db_up/commands.py index aaa8d06dc86..0edd8cb6850 100644 --- a/src/db-up/azext_db_up/commands.py +++ b/src/db-up/azext_db_up/commands.py @@ -10,8 +10,7 @@ def _deprecation_message(self): # pylint: disable=unused-argument - msg = ("'db-up' extension will be retired on November 20, 2024, " - "please consider using the create command associated with the respective database") + msg = "'db-up' extension has been deprecated. All commands included will be removed in near future." return msg diff --git a/src/db-up/setup.py b/src/db-up/setup.py index 65dbe2c9f9a..94ada938c61 100644 --- a/src/db-up/setup.py +++ b/src/db-up/setup.py @@ -9,7 +9,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "1.0.0b4" +VERSION = "1.0.0b3" CLASSIFIERS = [ 'Development Status :: 4 - Beta',