From 87b6114bb4b28d0d690c9640f46ec7dfca6d0630 Mon Sep 17 00:00:00 2001 From: Carl-Robert Linnupuu Date: Tue, 29 Aug 2023 09:56:47 +0300 Subject: [PATCH] 2.0.6 --- CHANGELOG.md | 15 ++++++++++++++- build.gradle.kts | 8 ++++---- .../kotlin/codegpt.java-conventions.gradle.kts | 12 ++++++++++++ gradle.properties | 2 +- 4 files changed, 31 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc3a5ecc..fea91b79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.6] - 2023-08-29 + +### Removed +- Functionality to fetch/use OpenAI account name + +### Fixed +- Rendering user input's newlines + +### Added +- Support for closing other tabs (#172) +- Support for configuring custom hosts for OpenAI and Azure services + ## [2.0.5] - 2023-06-12 ### Fixed @@ -82,7 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Secured - `OPENAI_API_KEY` persistence, key is saved in the OS password safe from now on -[Unreleased]: https://github.com/carlrobertoh/CodeGPT/compare/v2.0.5...HEAD +[Unreleased]: https://github.com/carlrobertoh/CodeGPT/compare/v2.0.6...HEAD +[2.0.6]: https://github.com/carlrobertoh/CodeGPT/compare/v2.0.5...v2.0.6 [2.0.5]: https://github.com/carlrobertoh/CodeGPT/compare/v2.0.4...v2.0.5 [2.0.4]: https://github.com/carlrobertoh/CodeGPT/compare/v2.0.3...v2.0.4 [2.0.3]: https://github.com/carlrobertoh/CodeGPT/compare/v2.0.2...v2.0.3 diff --git a/build.gradle.kts b/build.gradle.kts index 5b690761..11b2dfff 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -57,10 +57,6 @@ tasks { gradleVersion = properties("gradleVersion").get() } - runIde { - enabled = true - } - verifyPlugin { enabled = true } @@ -70,6 +66,7 @@ tasks { } patchPluginXml { + enabled = true version.set(properties("pluginVersion")) sinceBuild.set(properties("pluginSinceBuild")) untilBuild.set(properties("pluginUntilBuild")) @@ -101,18 +98,21 @@ tasks { } signPlugin { + enabled = true certificateChain.set(System.getenv("CERTIFICATE_CHAIN")) privateKey.set(System.getenv("PRIVATE_KEY")) password.set(System.getenv("PRIVATE_KEY_PASSWORD")) } publishPlugin { + enabled = true dependsOn("patchChangelog") token.set(System.getenv("PUBLISH_TOKEN")) channels.set(listOf("stable")) } runIde { + enabled = true environment("ENVIRONMENT", "LOCAL") } diff --git a/buildSrc/src/main/kotlin/codegpt.java-conventions.gradle.kts b/buildSrc/src/main/kotlin/codegpt.java-conventions.gradle.kts index fdfc88bb..3b4d0dd3 100644 --- a/buildSrc/src/main/kotlin/codegpt.java-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/codegpt.java-conventions.gradle.kts @@ -44,4 +44,16 @@ tasks { runPluginVerifier { enabled = false } + + patchPluginXml { + enabled = false + } + + publishPlugin { + enabled = false + } + + signPlugin { + enabled = false + } } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 08423231..bfa429f2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = ee.carlrobert pluginName = CodeGPT pluginRepositoryUrl = https://github.com/carlrobertoh/CodeGPT # SemVer format -> https://semver.org -pluginVersion = 2.0.5 +pluginVersion = 2.0.6 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 213