Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
10 changes: 9 additions & 1 deletion src/trustedsigning/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Release History
===============

1.0.0b3
++++++
* 'trustedsigning' extension will be deprecated in future release. Use the 'artifact-signing' extension instead.

1.0.0b2
++++++
* Trusted signing extension release

1.0.0b1
++++++
* Initial release.
* Initial release
3 changes: 2 additions & 1 deletion src/trustedsigning/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Azure CLI Trustedsigning Extension #
This is an extension to Azure CLI to manage Trustedsigning resources.
The `trustedsigning` command group has been deprecated and will be removed in a future release.
Use the `artifact-signing` command group instead.
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is an extra leading space at the start of this line. The sentence should start immediately after the line number without the leading space to maintain consistent formatting with the rest of the documentation.

Suggested change
Use the `artifact-signing` command group instead.
Use the `artifact-signing` command group instead.

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done


## How to use ##
Install this extension using the below CLI command
Expand Down
6 changes: 5 additions & 1 deletion src/trustedsigning/azext_trustedsigning/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@


def load_command_table(self, _): # pylint: disable=unused-argument
pass
with self.command_group(
"trustedsigning",
deprecate_info=self.deprecate(redirect="artifact-signing", hide=True),
):
pass
2 changes: 1 addition & 1 deletion src/trustedsigning/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


# HISTORY.rst entry.
VERSION = '1.0.0b2'
VERSION = '1.0.0b3'

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