Skip to content

Commit

Permalink
[db-up] Fix repeated typo in help strings (#7702)
Browse files Browse the repository at this point in the history
* Fix repeated typo in help strings.

* Fix db-up version in setup.py and log update in HISTORY.rst
  • Loading branch information
nachoalonsoportillo committed Jun 26, 2024
1 parent 9a0eb0a commit 3b3a2f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
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

0 comments on commit 3b3a2f9

Please sign in to comment.