diff --git a/packages/pyright-scip/CHANGELOG.md b/packages/pyright-scip/CHANGELOG.md index c52bf569f..dde510c22 100644 --- a/packages/pyright-scip/CHANGELOG.md +++ b/packages/pyright-scip/CHANGELOG.md @@ -1,4 +1,27 @@ -# Release v0.4 +# v0.6.3 + +- Fixes a known crash when handling inheritance from class + methods which use a decorator. +- Fixes a bug introduced in v0.6.1 which would cause + SCIP indexes on macOS to be generated with 0 documents. + +This version has much more robust testing on macOS for +path-handling issues. + +# v0.6.2 + +**WARNING**: This release is known to have issues on macOS. +We recommend upgrading to v0.6.3 or newer. + +- Fixed source maps on Linux. + +# v0.6.1 + +**WARNING**: This release should not be used. + +- Enabled source maps on macOS. + +# v0.4 - remove: `--include` and `--exclude`. Instead use `pyproject.toml` and pyright configuration. - add: `--target-only` to only emit and parse information related to some subdirectory of your project. Should still be run from root of project. diff --git a/packages/pyright-scip/CONTRIBUTING.md b/packages/pyright-scip/CONTRIBUTING.md index a05a4334f..0f3c7c59e 100644 --- a/packages/pyright-scip/CONTRIBUTING.md +++ b/packages/pyright-scip/CONTRIBUTING.md @@ -113,7 +113,9 @@ When modifying code in the `pyright-internal` package: ## Publishing releases -1. Change the version in `packages/pyright-scip/package.json` - to `M.N.P` and land a PR with that. -2. Add a tag `vM.N.P` to the commit on the `scip` branch - and push that tag. +1. Create a PR with the following changes: + - Change the version in [package.json](./package.json) + to `M.N.P`. + - Add release notes to [CHANGELOG.md](./CHANGELOG.md) +2. After merging the PR, add a tag `vM.N.P` to the latest + commit on the `scip` branch and push that tag. diff --git a/packages/pyright-scip/package-lock.json b/packages/pyright-scip/package-lock.json index f873d89ec..572e59735 100644 --- a/packages/pyright-scip/package-lock.json +++ b/packages/pyright-scip/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sourcegraph/scip-python", - "version": "0.6.2", + "version": "0.6.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sourcegraph/scip-python", - "version": "0.6.2", + "version": "0.6.3", "license": "MIT", "dependencies": { "@iarna/toml": "^2.2.5", diff --git a/packages/pyright-scip/package.json b/packages/pyright-scip/package.json index 3675978ac..c66e4e919 100644 --- a/packages/pyright-scip/package.json +++ b/packages/pyright-scip/package.json @@ -1,6 +1,6 @@ { "name": "@sourcegraph/scip-python", - "version": "0.6.2", + "version": "0.6.3", "description": "SCIP indexer for Python", "main": "index.js", "scripts": {