From b7678a5a84bb877962a1980c6e24facb3fc05018 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Wed, 11 Oct 2023 19:42:09 +0200 Subject: [PATCH] feat: bump llm-ls to `0.3.0` --- .github/workflows/release.yml | 6 ------ gradle.properties | 2 +- .../co/huggingface/llmintellij/LlmSettingsComponent.kt | 2 +- .../kotlin/co/huggingface/llmintellij/LlmSettingsState.kt | 2 +- 4 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 39414ab..c0e611d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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/* diff --git a/gradle.properties b/gradle.properties index e7be995..ca61a9a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt b/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt index b0d60ad..68fbfeb 100644 --- a/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt +++ b/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsComponent.kt @@ -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") diff --git a/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsState.kt b/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsState.kt index 012f46d..cff30a6 100644 --- a/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsState.kt +++ b/src/main/kotlin/co/huggingface/llmintellij/LlmSettingsState.kt @@ -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" }