Skip to content
Open
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
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
Comment thread
amritas marked this conversation as resolved.
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.

## 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