diff --git a/src/db-up/HISTORY.rst b/src/db-up/HISTORY.rst index 04aecb70a13..80b06ce52aa 100644 --- a/src/db-up/HISTORY.rst +++ b/src/db-up/HISTORY.rst @@ -2,6 +2,9 @@ Release History =============== +1.0.0b1 (2024-06-12) +* Fix typos in the examples of commands az mysql up, az postgres up, and az sql up + 0.2.9 (2023-08-01) ++++++++++++++++++ * Bump `psycopg2-binary` to 2.9.6 to support Python 3.11 diff --git a/src/db-up/azext_db_up/_help.py b/src/db-up/azext_db_up/_help.py index 50952a69e93..0f3ab07531f 100644 --- a/src/db-up/azext_db_up/_help.py +++ b/src/db-up/azext_db_up/_help.py @@ -10,7 +10,7 @@ type: command short-summary: Set up an Azure Database for MySQL server and configurations. examples: - - name: Ensure that a Azure Database for MySQL server is up and running and configured for immediate use. + - name: Ensure that an Azure Database for MySQL server is up and running and configured for immediate use. text: az mysql up - name: To override default names, provide parameters indicating desired values/existing resources. text: az mysql up -g MyResourceGroup -s MyServer -d MyDatabase -u MyUsername -p MyPassword @@ -20,7 +20,7 @@ type: command short-summary: Set up an Azure Database for PostgreSQL server and configurations. examples: - - name: Ensure that a Azure Database for PostgreSQL server is up and running and configured for immediate use. + - name: Ensure that an Azure Database for PostgreSQL server is up and running and configured for immediate use. text: az postgres up - name: To override default names, provide parameters indicating desired values/existing resources. text: az postgres up -g MyResourceGroup -s MyServer -d MyDatabase -u MyUsername -p MyPassword @@ -30,7 +30,7 @@ type: command short-summary: Set up an Azure Database for SQL server and configurations. examples: - - name: Ensure that a Azure Database for SQL server is up and running and configured for immediate use. + - name: Ensure that an Azure Database for SQL server is up and running and configured for immediate use. text: az sql up - name: To override default names, provide parameters indicating desired values/existing resources. text: az sql up -g MyResourceGroup -s MyServer -d MyDatabase -u MyUsername -p MyPassword diff --git a/src/db-up/setup.py b/src/db-up/setup.py index 0de3163ae44..9b439d10208 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 = "0.2.9" +VERSION = "1.0.0b1" CLASSIFIERS = [ 'Development Status :: 4 - Beta',