Skip to content

Commit

Permalink
feat: bump llm-ls to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
McPatate committed Oct 11, 2023
1 parent 0c10d5e commit b7678a5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,3 @@ jobs:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
run: ./gradlew publishPlugin

# Upload artifact as a release asset
- name: Upload Release Asset
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/*
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.2
pluginVersion = 0.0.3

# 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.2")
lspVersion = JBTextField("0.3.0")
llmLsSubsectionPanel.add(lspVersionLabel)
llmLsSubsectionPanel.add(lspVersion)
lspLogLevelLabel = JBLabel("Log level")
Expand Down
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.2"
var version: String = "0.3.0"
var logLevel: String = "warn"
}

Expand Down

0 comments on commit b7678a5

Please sign in to comment.