Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

Commit

Permalink
Release v0.1.0-poc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
InSyncWithFoo committed Apr 7, 2024
1 parent 616e636 commit b89fd05
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ ij_kotlin_wrap_first_method_in_call_chain = false
indent_size = 2
indent_style = space

[*.py]
indent_size = 4
indent_style = tab

[*.toml]
ij_continuation_indent_size = 4
ij_toml_keep_indents_on_empty_lines = true
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ build/
!**/src/main/**/build/
!**/src/test/**/build/

.scripts/
!.scripts/changelog.py
!.scripts/edit_releases.py

### IntelliJ IDEA ###
.idea/**
!.idea/gradle.xml
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ For code changes, see [`CHANGELOG_CODE.md`][_-1].

## [Unreleased]

<i>This section is currently empty.</i>


## [0.1.0-poc.4] - 2024-04-07

### Added

* Global options "Use editor font" and "Prefix tooltips" are added.
Expand Down Expand Up @@ -53,7 +58,8 @@ For code changes, see [`CHANGELOG_CODE.md`][_-1].
* Project initialized.


[Unreleased]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.3..HEAD
[Unreleased]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.4..HEAD
[0.1.0-poc.4]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.3..v0.1.0-poc.4
[0.1.0-poc.3]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.2..v0.1.0-poc.3
[0.1.0-poc.2]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.1..v0.1.0-poc.2
[0.1.0-poc.1]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/commits
12 changes: 9 additions & 3 deletions CHANGELOG_CODE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ For user-facing changes, see [`CHANGELOG.md`][_-1].

## [Unreleased]

<i>This section is currently empty.</i>


## [0.1.0-poc.4] - 2024-04-07

### Added

* Global options "Use editor font" and "Prefix tooltips" are added. (9ebda455)
Expand All @@ -24,7 +29,7 @@ For user-facing changes, see [`CHANGELOG.md`][_-1].
* [`README.md`][4-3] is rewritten to alter the plugin description. (801c9546)
* Bug reports and feature requests now have automatic assignees. (801c9546)
* [`build.yaml`][4-4] now runs tests on all three platforms.
(801c9546, HEAD)
(801c9546, 616e6363)
* Publicly-facing classes [`SupportProvider`][4-5] and [`Descriptor`][4-6]
are renamed. (7c96ada8)

Expand All @@ -40,7 +45,7 @@ For user-facing changes, see [`CHANGELOG.md`][_-1].
[4-1]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/96d974b5/src/main/resources/META-INF/pluginIcon.svg
[4-2]: https://plugins.jetbrains.com/legal/approval-guidelines
[4-3]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/801c9546/README.md
[4-4]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/HEAD/.github/workflows/build.yaml
[4-4]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/616e6363/.github/workflows/build.yaml
[4-5]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/7c96ada8/src/main/kotlin/com/insyncwithfoo/pyrightls/server/PyrightLSSupportProvider.kt
[4-6]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/7c96ada8/src/main/kotlin/com/insyncwithfoo/pyrightls/server/PyrightLSDescriptor.kt
[4-7]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/blob/9ebda455/src/main/kotlin/com/insyncwithfoo/pyrightls/configuration/PyrightLSConfigurable.kt
Expand Down Expand Up @@ -118,7 +123,8 @@ For user-facing changes, see [`CHANGELOG.md`][_-1].
* Project initialized.


[Unreleased]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.3..HEAD
[Unreleased]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.4..HEAD
[0.1.0-poc.4]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.3..v0.1.0-poc.4
[0.1.0-poc.3]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.2..v0.1.0-poc.3
[0.1.0-poc.2]: https://github.com/InSyncWithFoo/pyright-for-pycharm/compare/v0.1.0-poc.1..v0.1.0-poc.2
[0.1.0-poc.1]: https://github.com/InSyncWithFoo/pyright-langserver-for-pycharm/commits

0 comments on commit b89fd05

Please sign in to comment.