Skip to content

Commit

Permalink
{db-up} Update deprecation msg (#8136)
Browse files Browse the repository at this point in the history
  • Loading branch information
evelyn-ys authored Oct 15, 2024
1 parent ca94400 commit 71e08f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/db-up/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Release History
===============
1.0.0b4
+++++++
* Update deprecation doc

1.0.0b3
+++++++
* Deprecate this extension
Expand Down
3 changes: 2 additions & 1 deletion src/db-up/azext_db_up/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@


def _deprecation_message(self): # pylint: disable=unused-argument
msg = "'db-up' extension has been deprecated. All commands included will be removed in near future."
msg = ("'db-up' extension will be retired on November 20, 2024, "
"please consider using the create command associated with the respective database")
return msg


Expand Down
2 changes: 1 addition & 1 deletion src/db-up/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "1.0.0b3"
VERSION = "1.0.0b4"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 71e08f7

Please sign in to comment.