Skip to content

Commit

Permalink
[devcenter] Fix incorrect command group name, update author details (#…
Browse files Browse the repository at this point in the history
…5968)

* Fix image version command group name

* fix name
  • Loading branch information
am-lim committed Mar 13, 2023
1 parent d558ff1 commit 148f6d6
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 1,869 deletions.
4 changes: 4 additions & 0 deletions src/devcenter/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.1.1
* Fix wrong command group name
* Add correct author email

0.1.0
++++++
* Initial release.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command_group(
"devcenter admin image-verion",
"devcenter admin image-version",
is_preview=True,
)
class __CMDGroup(AAZCommandGroup):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"devcenter admin image-verion list",
"devcenter admin image-version list",
is_preview=True,
)
class List(AAZCommand):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


@register_command(
"devcenter admin image-verion show",
"devcenter admin image-version show",
is_preview=True,
)
class Show(AAZCommand):
Expand Down
2 changes: 1 addition & 1 deletion src/devcenter/azext_devcenter/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
List as _ImageList,
Show as _ImageShow,
)
from .aaz.latest.devcenter.admin.image_verion import (
from .aaz.latest.devcenter.admin.image_version import (
List as _ImageVersionList,
Show as _ImageVersionShow,
)
Expand Down
1,862 changes: 0 additions & 1,862 deletions src/devcenter/report.md

This file was deleted.

6 changes: 3 additions & 3 deletions src/devcenter/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '0.1.0'
VERSION = '0.1.1'
try:
from azext_devcenter.manual.version import VERSION
except ImportError:
Expand Down Expand Up @@ -46,8 +46,8 @@
name='devcenter',
version=VERSION,
description='Microsoft Azure Command-Line Tools DevCenter Extension',
author='Microsoft Corporation',
author_email='azpycli@microsoft.com',
author='DevCenter',
author_email='tm-azurefidalgo@microsoft.com',
url='https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter',
long_description=README + '\n\n' + HISTORY,
license='MIT',
Expand Down

0 comments on commit 148f6d6

Please sign in to comment.