diff --git a/src/db-up/HISTORY.rst b/src/db-up/HISTORY.rst index 36e54f2c85..d380878dd8 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 aaa8d06dc8..0edd8cb685 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 65dbe2c9f9..94ada938c6 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',