This commit is contained in:
Carl-Robert Linnupuu 2023-08-29 09:56:47 +03:00
parent 1f279cafc9
commit 87b6114bb4
4 changed files with 31 additions and 6 deletions

View file

@ -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

View file

@ -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")
}

View file

@ -44,4 +44,16 @@ tasks {
runPluginVerifier {
enabled = false
}
patchPluginXml {
enabled = false
}
publishPlugin {
enabled = false
}
signPlugin {
enabled = false
}
}

View file

@ -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