From d0cba521712de47e697284295feeffe91203ce9e Mon Sep 17 00:00:00 2001 From: v-soujanya <101401302+v-soujanya@users.noreply.github.com> Date: Wed, 25 Jun 2025 07:45:19 +0000 Subject: [PATCH 1/2] Post Release Changes --- .github/workflows/released-version.yml | 1 + .vscode/tasks.json | 8 ++++---- azure-devops/azext_devops/version.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/released-version.yml b/.github/workflows/released-version.yml index 93e7f0609..d317e328f 100644 --- a/.github/workflows/released-version.yml +++ b/.github/workflows/released-version.yml @@ -43,6 +43,7 @@ jobs: azdev setup -r ./ -e azure-devops azdev extension repo add . azdev extension add azure-devops + azdev linter azure-devops --min-severity medium azdev test azure-devops --live --no-exitfirst --series env: AZURE_DEVOPS_EXT_TEST_ORG: ${{ secrets.AZURE_DEVOPS_EXT_TEST_ORG }} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f0a6b4382..0db4b55e3 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -35,9 +35,9 @@ { "label": "Install extension", "type": "shell", - "command": "az extension add --source ./dist/azure_devops-1.0.2-py2.py3-none-any.whl -y", + "command": "az extension add --source ./dist/azure_devops-1.0.3-py2.py3-none-any.whl -y", "windows": { - "command": "az extension add --source .\\dist\\azure_devops-1.0.2-py2.py3-none-any.whl -y", + "command": "az extension add --source .\\dist\\azure_devops-1.0.3-py2.py3-none-any.whl -y", }, "options": { "cwd": "${workspaceRoot}/azure-devops/" @@ -51,9 +51,9 @@ { "label": "Update extension", "type": "shell", - "command": "az extension add --source ./dist/azure_devops-1.0.2-py2.py3-none-any.whl -y", + "command": "az extension add --source ./dist/azure_devops-1.0.3-py2.py3-none-any.whl -y", "windows": { - "command": "az extension add --source .\\dist\\azure_devops-1.0.2-py2.py3-none-any.whl -y", + "command": "az extension add --source .\\dist\\azure_devops-1.0.3-py2.py3-none-any.whl -y", }, "options": { "cwd": "${workspaceRoot}/azure-devops/" diff --git a/azure-devops/azext_devops/version.py b/azure-devops/azext_devops/version.py index 7e5ce6412..37460e6a9 100644 --- a/azure-devops/azext_devops/version.py +++ b/azure-devops/azext_devops/version.py @@ -3,4 +3,4 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -VERSION = "1.0.2" +VERSION = "1.0.3" From ddca2e70fc58ea8062a7da30b39d7e9e0effb270 Mon Sep 17 00:00:00 2001 From: v-soujanya <101401302+v-soujanya@users.noreply.github.com> Date: Wed, 25 Jun 2025 07:57:04 +0000 Subject: [PATCH 2/2] removing the lint check as not required now --- .github/workflows/released-version.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/released-version.yml b/.github/workflows/released-version.yml index d317e328f..93e7f0609 100644 --- a/.github/workflows/released-version.yml +++ b/.github/workflows/released-version.yml @@ -43,7 +43,6 @@ jobs: azdev setup -r ./ -e azure-devops azdev extension repo add . azdev extension add azure-devops - azdev linter azure-devops --min-severity medium azdev test azure-devops --live --no-exitfirst --series env: AZURE_DEVOPS_EXT_TEST_ORG: ${{ secrets.AZURE_DEVOPS_EXT_TEST_ORG }}