Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion packages/pyright-scip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
10 changes: 6 additions & 4 deletions packages/pyright-scip/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions packages/pyright-scip/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/pyright-scip/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Loading