Skip to content

Commit 6a50ce1

Browse files
author
Warren Jones
authored
[Quantum] Update version and history info for az quantum extension 0.17.0 (#5443)
* Update version and history info for az quantum extension 0.17.0 * Fix flake8 style rule violations * Update release date
1 parent 0e4294e commit 6a50ce1

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

src/quantum/HISTORY.rst

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

6+
0.17.0
7+
++++++
8+
* [2022-10-14] Version intended to work with QDK version 0.26.233415
9+
* The `az quantum` reference documentation now indicates which command parameters are required, and missing-parameter error messages are more informative. See https://learn.microsoft.com/cli/azure/quantum
10+
* You can submit jobs to the microsoft.simulator.resources-estimator target using the CLI.
11+
612
0.16.0
713
++++++
814
* [2022-06-30] Version intended to work with QDK version 0.25.218240

src/quantum/azext_quantum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# This is the version reported by the CLI to the service when submitting requests.
1212
# This should be in sync with the extension version in 'setup.py', unless we need to
1313
# submit using a different version.
14-
CLI_REPORTED_VERSION = "0.16.0"
14+
CLI_REPORTED_VERSION = "0.17.0"
1515

1616

1717
class QuantumCommandsLoader(AzCommandsLoader):

src/quantum/azext_quantum/_params.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def get_action(self, values, option_string):
2121
params = {}
2222
for item in values:
2323
try:
24-
json_obj = shell_safe_json_parse(item)
25-
params.update(json_obj)
26-
except CLIError as e:
24+
json_obj = shell_safe_json_parse(item)
25+
params.update(json_obj)
26+
except CLIError:
2727
try:
2828
key, value = item.split('=', 1)
2929
params[key] = value

src/quantum/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# This version should match the latest entry in HISTORY.rst
1818
# Also, when updating this, please review the version used by the extension to
1919
# submit requests, which can be found at './azext_quantum/__init__.py'
20-
VERSION = '0.16.0'
20+
VERSION = '0.17.0'
2121

2222
# The full list of classifiers is available at
2323
# https://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)