Skip to content
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
4 changes: 4 additions & 0 deletions src/azure-cli-core/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

2.0.80
++++++
* No changes

2.0.79
++++++
* Fix #11586: `az login` is not recorded in server telemetry
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
from __future__ import print_function

__version__ = "2.0.79"
__version__ = "2.0.80"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "2.0.79"
VERSION = "2.0.80"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down
3 changes: 3 additions & 0 deletions src/azure-cli/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Release History
===============

2.0.80
++++++

**Compute**

* disk update: Add --disk-encryption-set and --encryption-type
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
pkg_resources.declare_namespace(__name__)

__author__ = "Microsoft Corporation <python@microsoft.com>"
__version__ = "2.0.79"
__version__ = "2.0.80"
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py2.Darwin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ applicationinsights==0.11.9
argcomplete==1.10.0
asn1crypto==0.24.0
azure-batch==8.0.0
azure-cli==2.0.79
azure-cli==2.0.80
azure-cli-command-modules-nspkg==2.0.3
azure-cli-core==2.0.79
azure-cli-core==2.0.80
azure-cli-nspkg==3.0.4
azure-cli-telemetry==1.0.4
azure-common==1.1.22
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py2.Linux.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ applicationinsights==0.11.9
argcomplete==1.10.0
asn1crypto==0.24.0
azure-batch==8.0.0
azure-cli==2.0.79
azure-cli==2.0.80
azure-cli-command-modules-nspkg==2.0.3
azure-cli-core==2.0.79
azure-cli-core==2.0.80
azure-cli-nspkg==3.0.4
azure-cli-telemetry==1.0.4
azure-common==1.1.22
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py2.windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ applicationinsights==0.11.7
argcomplete==1.10.0
asn1crypto==0.24.0
azure-batch==8.0.0
azure-cli==2.0.79
azure-cli==2.0.80
azure-cli-command-modules-nspkg==2.0.3
azure-cli-core==2.0.79
azure-cli-core==2.0.80
azure-cli-nspkg==3.0.4
azure-cli-telemetry==1.0.4
azure-common==1.1.22
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py3.Darwin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ applicationinsights==0.11.9
argcomplete==1.10.0
asn1crypto==0.24.0
azure-batch==8.0.0
azure-cli==2.0.79
azure-cli==2.0.80
azure-cli-command-modules-nspkg==2.0.3
azure-cli-core==2.0.79
azure-cli-core==2.0.80
azure-cli-nspkg==3.0.4
azure-cli-telemetry==1.0.4
azure-common==1.1.22
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py3.Linux.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ applicationinsights==0.11.9
argcomplete==1.10.0
asn1crypto==0.24.0
azure-batch==8.0.0
azure-cli==2.0.79
azure-cli==2.0.80
azure-cli-command-modules-nspkg==2.0.3
azure-cli-core==2.0.79
azure-cli-core==2.0.80
azure-cli-nspkg==3.0.4
azure-cli-telemetry==1.0.4
azure-common==1.1.22
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py3.windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ applicationinsights==0.11.7
argcomplete==1.10.0
asn1crypto==0.24.0
azure-batch==8.0.0
azure-cli==2.0.79
azure-cli==2.0.80
azure-cli-command-modules-nspkg==2.0.3
azure-cli-core==2.0.79
azure-cli-core==2.0.80
azure-cli-nspkg==3.0.4
azure-cli-telemetry==1.0.4
azure-common==1.1.22
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "2.0.79"
VERSION = "2.0.80"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down