Skip to content

Commit 5c2ac99

Browse files
williexutroydai
authored andcommitted
minor fix for CLI core (#6528)
comment
1 parent e869cad commit 5c2ac99

7 files changed

Lines changed: 13 additions & 4 deletions

File tree

src/azure-cli-core/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
2.0.37
7+
++++++
8+
* Minor fixes
9+
610
2.0.36
711
++++++
812
* Minor fixes

src/azure-cli-core/azure/cli/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# --------------------------------------------------------------------------------------------
55
from __future__ import print_function
66

7-
__version__ = "2.0.36"
7+
__version__ = "2.0.37"
88

99
import os
1010
import sys

src/azure-cli-core/azure/cli/core/telemetry.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ def start():
220220
_session.start_time = datetime.datetime.utcnow()
221221

222222

223+
@_user_agrees_to_telemetry
223224
@decorators.suppress_all_exceptions(raise_in_diagnostics=True)
224225
def flush():
225226
# flush out current information

src/azure-cli-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1616
cmdclass = {}
1717

18-
VERSION = "2.0.36"
18+
VERSION = "2.0.37"
1919
# If we have source, validate that our version numbers match
2020
# This should prevent uploading releases with mismatched versions.
2121
try:

src/azure-cli/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
2.0.37
7+
++++++
8+
* Minor fixes
9+
610
2.0.36
711
++++++
812
* Minor fixes

src/azure-cli/azure/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
pkg_resources.declare_namespace(__name__)
1212

1313
__author__ = "Microsoft Corporation <python@microsoft.com>"
14-
__version__ = "2.0.36"
14+
__version__ = "2.0.37"

src/azure-cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1616
cmdclass = {}
1717

18-
VERSION = "2.0.36"
18+
VERSION = "2.0.37"
1919
# If we have source, validate that our version numbers match
2020
# This should prevent uploading releases with mismatched versions.
2121
try:

0 commit comments

Comments
 (0)