Skip to content

Commit

Permalink
feat: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shuhangli committed Aug 3, 2023
1 parent 6cf8c38 commit 47408b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
pluginGroup = com.github.suhli.ideagokratosplugin
pluginName = go-kratos-plugin
# SemVer format -> https://semver.org
pluginVersion = 0.0.15
pluginVersion = 0.0.16

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 221.*
pluginUntilBuild = 231.*
pluginUntilBuild = 232.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension
platformType = GO
platformVersion = 2023.1
platformVersion = 2023.2

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.jaFva, com.jetbrains.php:203.4449.22
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class KratosActionOnSave : ActionOnSave() {
override fun isEnabledForProject(project: Project): Boolean {
return true
}
override fun processDocuments(project: Project, documents: Array<out Document>) {
override fun processDocuments(project: Project, documents: Array<Document?>) {
super.processDocuments(project, documents)
val file = FileEditorManager.getInstance(project).selectedEditor?.file ?: return
val f = PsiManager.getInstance(project).findFile(file)
Expand Down

0 comments on commit 47408b9

Please sign in to comment.