File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed
plugin/PySrc/space_tracer
src/main/resources/META-INF Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,15 @@ two types of IDEA release.
4747[ IDEA build number ranges ] : https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
4848[ IDEA source code ] : https://github.com/JetBrains/intellij-community
4949
50+ Writing an IDEA plugin is complicated, so start with the
51+ [ JetBrains documentation] . When you run into trouble, try searching or posting
52+ on the [ JetBrains Platform forum] . There are more useful links in the
53+ [ Plugin template] .
54+
55+ [ JetBrains documentation ] : https://plugins.jetbrains.com/docs/intellij/developing-plugins.html
56+ [ JetBrains Platform forum ] : https://platform.jetbrains.com/
57+ [ Plugin template ] : https://github.com/JetBrains/intellij-platform-plugin-template#useful-links
58+
5059### Publish a new release for the PyCharm plugin
51601 . Check that all the Python unit tests pass, by running tox.
52612 . Update the version number in ` about.py ` and ` pycharm/build.gradle.kts ` , and
Original file line number Diff line number Diff line change 33Don't put any code in here, because it must be safe to execute in setup.py. """
44
55__title__ = 'space_tracer' # => name in setup.py
6- __version__ = '4.13.0 '
6+ __version__ = '4.13.2 '
77__author__ = "Don Kirkby"
88__author_email__ = "donkirkby@gmail.com"
99__description__ = "Trade time for space when debugging your code."
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
22
33plugins {
44 id(" java" )
5- id(" org.jetbrains.intellij.platform" ) version " 2.10.5 "
5+ id(" org.jetbrains.intellij.platform" ) version " 2.11.0 "
66}
77
88group = " io.github.donkirkby"
9- version = " 4.13.1 "
9+ version = " 4.13.2 "
1010
1111repositories {
1212 mavenCentral()
@@ -20,12 +20,12 @@ repositories {
2020// Read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html
2121dependencies {
2222 intellijPlatform {
23- intellijIdeaUltimate(" 2025.3" )
23+ intellijIdeaUltimate(" 2025.3.2 " )
2424
2525 // "Pythonid" for ultimate, "PythonCore" for community. Find compatible
2626 // ultimate versions at https://plugins.jetbrains.com/plugin/631
2727 // community versions at https://plugins.jetbrains.com/plugin/7322
28- plugin(" PythonCore:253.28294.334 " )
28+ plugin(" PythonCore:253.30387.90 " )
2929
3030 pluginVerifier()
3131 }
Original file line number Diff line number Diff line change 2929 <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
3030 on how to target different products -->
3131 <depends >com.intellij.modules.lang</depends >
32- <depends >PythonCore </depends >
32+ <depends >com.intellij.modules.python </depends >
3333 <extensions defaultExtensionNs =" com.intellij" >
3434 <fileEditorProvider
3535 implementation =" io.github.donkirkby.livepycharm.SplitFileEditorProvider" />
You can’t perform that action at this time.
0 commit comments