diff --git a/DiffPalReviewDevV1/task.json b/DiffPalReviewDevV1/task.json index 001a51b..25f866d 100644 --- a/DiffPalReviewDevV1/task.json +++ b/DiffPalReviewDevV1/task.json @@ -10,7 +10,7 @@ "version": { "Major": 1, "Minor": 6, - "Patch": 12 + "Patch": 13 }, "minimumAgentVersion": "3.224.0", "instanceNameFormat": "DiffPal Review Dev", @@ -28,7 +28,7 @@ "type": "string", "label": "DiffPal version", "required": false, - "defaultValue": "0.1.33", + "defaultValue": "0.1.34", "helpMarkDown": "npm version or dist-tag for @diffpal/diffpal." }, { diff --git a/DiffPalReviewV1/task.json b/DiffPalReviewV1/task.json index be3766f..7f576d9 100644 --- a/DiffPalReviewV1/task.json +++ b/DiffPalReviewV1/task.json @@ -10,7 +10,7 @@ "version": { "Major": 1, "Minor": 6, - "Patch": 12 + "Patch": 13 }, "minimumAgentVersion": "3.224.0", "instanceNameFormat": "DiffPal Review", @@ -28,7 +28,7 @@ "type": "string", "label": "DiffPal version", "required": false, - "defaultValue": "0.1.33", + "defaultValue": "0.1.34", "helpMarkDown": "npm version or dist-tag for @diffpal/diffpal." }, { diff --git a/README.md b/README.md index cf4d4a5..ea2a2e0 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ VSIX packaging, and Marketplace release flow. The task installs `@diffpal/diffpal` by default and runs `diffpal review ado`. Bring the provider recipe you want to use; the Azure review flow stays the same. -By default it installs `@diffpal/diffpal@0.1.33`, the tested CLI release paired +By default it installs `@diffpal/diffpal@0.1.34`, the tested CLI release paired with this extension. Set `diffpalVersion` only when you need to override that default rollout. @@ -67,7 +67,7 @@ steps: - task: DiffPalReview@1 displayName: DiffPal review inputs: - diffpalVersion: 0.1.33 + diffpalVersion: 0.1.34 profile: ci feedback: balanced env: diff --git a/package-lock.json b/package-lock.json index f793902..1397d4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@diffpal/azure-devops-extension", - "version": "0.1.34", + "version": "0.1.35", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@diffpal/azure-devops-extension", - "version": "0.1.34", + "version": "0.1.35", "license": "MIT", "dependencies": { "azure-pipelines-task-lib": "5.2.10" diff --git a/package.json b/package.json index 77726aa..14fc11c 100644 --- a/package.json +++ b/package.json @@ -34,5 +34,5 @@ "publish:prod": "npm run build \u0026\u0026 tfx extension publish --manifest-globs vss-extension.json", "smoke": "npm run build \u0026\u0026 node scripts/smoke-test.js" }, - "version": "0.1.34" + "version": "0.1.35" } diff --git a/scripts/smoke-test.js b/scripts/smoke-test.js index a43b42c..091a4e8 100644 --- a/scripts/smoke-test.js +++ b/scripts/smoke-test.js @@ -155,7 +155,7 @@ function testDefaultPinnedVersionIsUsedWhenInputIsUnset() { PATH: `${fakeBin}${path.delimiter}${process.env.PATH || ""}` }); - assert(read(npmArgv).includes("@diffpal/diffpal@0.1.33"), "default install did not request the pinned DiffPal version"); + assert(read(npmArgv).includes("@diffpal/diffpal@0.1.34"), "default install did not request the pinned DiffPal version"); assert(read(diffpalArgv).includes("review\nado"), "default pinned version did not run diffpal review ado"); } diff --git a/src/index.ts b/src/index.ts index 66eda62..1456665 100644 --- a/src/index.ts +++ b/src/index.ts @@ -25,7 +25,7 @@ type ReviewRange = { pullRequest: PullRequestContext; }; -const DEFAULT_DIFFPAL_VERSION = "0.1.33"; +const DEFAULT_DIFFPAL_VERSION = "0.1.34"; const TRANSIENT_REVIEW_EXIT_CODE = 3; const REVIEW_BLOCKED_EXIT_CODE = 10; diff --git a/vss-extension.dev.json b/vss-extension.dev.json index 3a2c6d3..5e67e0b 100644 --- a/vss-extension.dev.json +++ b/vss-extension.dev.json @@ -46,5 +46,5 @@ "id": "Microsoft.VisualStudio.Services" } ], - "version": "0.1.34" + "version": "0.1.35" } diff --git a/vss-extension.json b/vss-extension.json index 106a22d..46bee59 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -46,5 +46,5 @@ "id": "Microsoft.VisualStudio.Services" } ], - "version": "0.1.34" + "version": "0.1.35" }