Skip to content

Commit fead13e

Browse files
committed
Updated version and added missing example for new command
1 parent 6e08b2f commit fead13e

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

src/confidentialledger/HISTORY.rst

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

6+
1.1.0
7+
++++++
8+
* Updated the extension as per the latest spec 2024-09-19-preview.
9+
* Added new command check-name-availability.
10+
611
1.0.0
712
++++++
813
* GA of the Azure Confidential Ledger Azure CLI extension.

src/confidentialledger/azext_confidentialledger/tests/latest/example_steps.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,15 @@ def step_delete(test, checks=None):
126126
'--resource-group "{rg}"',
127127
checks=checks,
128128
)
129+
130+
# EXAMPLE: /Ledger/checknameavailability
131+
@try_manual
132+
def step_checknameavailability(test, checks=None):
133+
if checks is None:
134+
checks = []
135+
test.cmd(
136+
"az confidentialledger check-name-availability "
137+
'--type Microsoft.ConfidentialLedger/Ledgers '
138+
'--name {ledger_name}',
139+
checks=checks,
140+
)

src/confidentialledger/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from setuptools import setup, find_packages
1111

1212
# HISTORY.rst entry.
13-
VERSION = "1.0.0"
13+
VERSION = "1.1.0"
1414

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

0 commit comments

Comments
 (0)