Skip to content

Commit

Permalink
Stop using internal API in PyCharm, for #580.
Browse files Browse the repository at this point in the history
Bump version number for patch release.
  • Loading branch information
donkirkby committed Dec 19, 2023
1 parent ae29b9d commit a752931
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion html/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: space-tracer
version: 4.11.2
version: 4.11.3
source:
path: space_tracer-4.11.0
test:
Expand Down
2 changes: 1 addition & 1 deletion plugin/PySrc/space_tracer/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Don't put any code in here, because it must be safe to execute in setup.py. """

__title__ = 'space_tracer' # => name in setup.py
__version__ = '4.11.2'
__version__ = '4.11.3'
__author__ = "Don Kirkby"
__author_email__ = "[email protected]"
__description__ = "Trade time for space when debugging your code."
Expand Down
2 changes: 1 addition & 1 deletion pycharm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "io.github.donkirkby"
version = "4.11.2"
version = "4.11.3"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ private static Builder getBuilderFromEditorProvider(@NotNull final com.intellij.
// called with write context
AsyncFileEditorProvider asyncProvider = (AsyncFileEditorProvider) provider;
if (runsInProjectView() || runsInEventDispatchThread()) {
return CoroutinesKt.runBlockingMaybeCancellable(
return CoroutinesKt.runBlockingCancellable(
(coroutineScope, continuation) -> asyncProvider.createEditorBuilder(
project,
file,
Expand Down

0 comments on commit a752931

Please sign in to comment.