diff --git a/DiffPalReviewDevV1/task.json b/DiffPalReviewDevV1/task.json index 1f8194f..001a51b 100644 --- a/DiffPalReviewDevV1/task.json +++ b/DiffPalReviewDevV1/task.json @@ -10,7 +10,7 @@ "version": { "Major": 1, "Minor": 6, - "Patch": 11 + "Patch": 12 }, "minimumAgentVersion": "3.224.0", "instanceNameFormat": "DiffPal Review Dev", @@ -28,7 +28,7 @@ "type": "string", "label": "DiffPal version", "required": false, - "defaultValue": "0.1.32", + "defaultValue": "0.1.33", "helpMarkDown": "npm version or dist-tag for @diffpal/diffpal." }, { diff --git a/DiffPalReviewV1/task.json b/DiffPalReviewV1/task.json index a0a82df..be3766f 100644 --- a/DiffPalReviewV1/task.json +++ b/DiffPalReviewV1/task.json @@ -10,7 +10,7 @@ "version": { "Major": 1, "Minor": 6, - "Patch": 11 + "Patch": 12 }, "minimumAgentVersion": "3.224.0", "instanceNameFormat": "DiffPal Review", @@ -28,7 +28,7 @@ "type": "string", "label": "DiffPal version", "required": false, - "defaultValue": "0.1.32", + "defaultValue": "0.1.33", "helpMarkDown": "npm version or dist-tag for @diffpal/diffpal." }, { diff --git a/README.md b/README.md index df6b456..cf4d4a5 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.32`, the tested CLI release paired +By default it installs `@diffpal/diffpal@0.1.33`, 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.32 + diffpalVersion: 0.1.33 profile: ci feedback: balanced env: diff --git a/package-lock.json b/package-lock.json index f18a133..f793902 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@diffpal/azure-devops-extension", - "version": "0.1.33", + "version": "0.1.34", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@diffpal/azure-devops-extension", - "version": "0.1.33", + "version": "0.1.34", "license": "MIT", "dependencies": { "azure-pipelines-task-lib": "5.2.10" diff --git a/package.json b/package.json index 9fa15ec..77726aa 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.33" + "version": "0.1.34" } diff --git a/scripts/smoke-test.js b/scripts/smoke-test.js index 1290104..a43b42c 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.32"), "default install did not request the pinned DiffPal version"); + assert(read(npmArgv).includes("@diffpal/diffpal@0.1.33"), "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 a6b9d1f..66eda62 100644 --- a/src/index.ts +++ b/src/index.ts @@ -25,7 +25,7 @@ type ReviewRange = { pullRequest: PullRequestContext; }; -const DEFAULT_DIFFPAL_VERSION = "0.1.32"; +const DEFAULT_DIFFPAL_VERSION = "0.1.33"; 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 b198568..3a2c6d3 100644 --- a/vss-extension.dev.json +++ b/vss-extension.dev.json @@ -46,5 +46,5 @@ "id": "Microsoft.VisualStudio.Services" } ], - "version": "0.1.33" + "version": "0.1.34" } diff --git a/vss-extension.json b/vss-extension.json index b7eeddb..106a22d 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -46,5 +46,5 @@ "id": "Microsoft.VisualStudio.Services" } ], - "version": "0.1.33" + "version": "0.1.34" }