From 0c177adf152c740f4b72641b2419fd1a7bbb4564 Mon Sep 17 00:00:00 2001 From: InSync Date: Sun, 22 Dec 2024 11:12:40 +0700 Subject: [PATCH] Deprecating this plugin (#60) --- CHANGELOG_CODE.md | 13 ++++--------- README.md | 9 +++++++++ gradle.properties | 2 +- src/main/resources/META-INF/plugin.xml | 2 +- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG_CODE.md b/CHANGELOG_CODE.md index 31e57f9..91a426c 100644 --- a/CHANGELOG_CODE.md +++ b/CHANGELOG_CODE.md @@ -11,17 +11,12 @@ For user-facing changes, see [`CHANGELOG.md`][_-1]. ## [Unreleased] -### Added - -* Global option "Locale" is added. (5aa7aaec, HEAD) - -### Changed - -* Gradle is updated to 8.10. (226568e1) -* [Kotlin JVM plugin][120-1] is updated to 2.0.10. (227ef0c6) +This plugin is deprecated. Install [the Pyright plugin][1] instead. +See [the migration guide][2] for more information. - [120-1]: https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm + [1]: https://github.com/InSyncWithFoo/pyright-for-pycharm + [2]: https://insyncwithfoo.github.io/pyright-for-pycharm/migration-guide/ ## [1.1.0] - 2024-08-13 diff --git a/README.md b/README.md index a460439..77a8f11 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,15 @@ [![Rating](https://img.shields.io/jetbrains/plugin/r/rating/24146)][8] [![Downloads](https://img.shields.io/jetbrains/plugin/d/24146)][9] +> [!NOTE] +> This plugin is deprecated. Install [the Pyright plugin][3] instead. +> See [the migration guide][0] for more information. + + + [0]: https://insyncwithfoo.github.io/pyright-for-pycharm/migration-guide/ + +--- + ![](./.github/readme/demo-1.png) diff --git a/gradle.properties b/gradle.properties index 678a4c4..258db72 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html pluginGroup = com.insyncwithfoo.pyrightls -pluginName = Pyright Language Server +pluginName = Pyright Language Server [Deprecated] pluginRepositoryUrl = https://github.com/insyncwithfoo/pyright-langserver-for-pycharm # SemVer format -> https://semver.org pluginVersion = 1.2.0 diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index cdbc56d..cf33e40 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -5,7 +5,7 @@ - Pyright Language Server + Pyright Language Server [Deprecated] InSync