Skip to content

Commit

Permalink
feat: update llm-ls to 0.2.2 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
McPatate authored Oct 10, 2023
1 parent 81b238d commit 0c10d5e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@

name: Release
on:
release:
types: [prereleased, released]
workflow_dispatch:

push:
branches:
- 'release/**'

jobs:

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pluginUntilBuild = 233.*
pluginGroup = co.huggingface.llmintellij
pluginName = llm-intellij
pluginRepositoryUrl = https://github.com/huggingface/llm-intellij
pluginVersion = 0.0.1
pluginVersion = 0.0.2

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IU
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class LlmSettingsComponent {
llmLsSubsectionPanel.add(lspBinaryPathLabel)
llmLsSubsectionPanel.add(lspBinaryPath)
lspVersionLabel = JBLabel("Version")
lspVersion = JBTextField("0.2.1")
lspVersion = JBTextField("0.2.2")
llmLsSubsectionPanel.add(lspVersionLabel)
llmLsSubsectionPanel.add(lspVersion)
lspLogLevelLabel = JBLabel("Log level")
Expand Down Expand Up @@ -424,4 +424,4 @@ class LlmSettingsComponent {
parentPanel.add(panel)
return panel
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import com.intellij.util.xmlb.XmlSerializerUtil

class LspSettings {
var binaryPath: String? = null
var version: String = "0.2.1"
var version: String = "0.2.2"
var logLevel: String = "warn"
}

Expand Down Expand Up @@ -61,4 +61,4 @@ class LlmSettingsState: PersistentStateComponent<LlmSettingsState?> {
val instance: LlmSettingsState
get() = ApplicationManager.getApplication().getService(LlmSettingsState::class.java)
}
}
}

0 comments on commit 0c10d5e

Please sign in to comment.