Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[db-up] Fix repeated typo in help strings #7702

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/db-up/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/db-up/azext_db_up/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
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 = "0.2.9"
VERSION = "1.0.0b1"

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