From 4425371292f2a610608b7f813e998bce877c9a58 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Jul 2026 22:25:50 +0000 Subject: [PATCH 1/2] Initial plan From e9c66635bec9ad3495b8c39683092f94c73a9da9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Jul 2026 22:27:52 +0000 Subject: [PATCH 2/2] chore: decouple API package version from extension version - Reset api/package.json version to 1.0.0 - Reset api/package-lock.json version fields to 1.0.0 - Remove version-match CI job from pr-file-check.yml --- .github/workflows/pr-file-check.yml | 17 ----------------- api/package-lock.json | 4 ++-- api/package.json | 2 +- 3 files changed, 3 insertions(+), 20 deletions(-) diff --git a/.github/workflows/pr-file-check.yml b/.github/workflows/pr-file-check.yml index 1450ee6f..bbe3f575 100644 --- a/.github/workflows/pr-file-check.yml +++ b/.github/workflows/pr-file-check.yml @@ -57,20 +57,3 @@ jobs: file-pattern: 'api/CHANGELOG.md' skip-label: 'skip api changelog' failure-message: 'The public API (${prereq-pattern}) was changed without a changelog entry in ${file-pattern} (the ${skip-label} label can be used to pass this check)' - - version-match: - name: 'Extension and API package versions match' - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' - - - name: 'Compare package.json versions' - run: python scripts/compare_package_versions.py diff --git a/api/package-lock.json b/api/package-lock.json index d74fb7e2..f8d4912d 100644 --- a/api/package-lock.json +++ b/api/package-lock.json @@ -1,12 +1,12 @@ { "name": "@vscode/python-environments", - "version": "1.37.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@vscode/python-environments", - "version": "1.37.0", + "version": "1.0.0", "license": "MIT", "dependencies": { "@renovatebot/pep440": "^3.1.0" diff --git a/api/package.json b/api/package.json index 00d4aa84..042d6409 100644 --- a/api/package.json +++ b/api/package.json @@ -1,7 +1,7 @@ { "name": "@vscode/python-environments", "description": "An API facade for the Python Environments extension in VS Code", - "version": "1.37.0", + "version": "1.0.0", "author": { "name": "Microsoft Corporation" },