diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c1b05422..d40b4687e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ # TestSpark Changelog ## Unreleased + +## 0.4.2 +### Added +- Support IDEA `253.*`. + +## 0.4.1 +### Fixed +- Changed TestSpark's vendor to JetBrains +- Fixed minor bugs +### Changed +- Improved the error-handling structure +### Added +- Support IDEA `252.*`. + +## 0.4.0 +### Fixed +- Resolve compatibility issues with Marketplace verifier +### Changed +- Improve the collection of sample test code candidates +### Added +- Support for Google AI as an LLM +- KEX as a new test generation feature +- Support IDEA `251.*`. + ## 0.3.1 ### Fixed - Multiple minor bugs in test generation algorithms. diff --git a/build.gradle.kts b/build.gradle.kts index da74551e0..a535de441 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -136,7 +136,11 @@ dependencies { // make a custom version of IDEA create(properties("platformType"), properties("platformVersion")) // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file. - bundledPlugins(providers.gradleProperty("platformPlugins").map { it.split(',') }) + bundledPlugins( + providers.gradleProperty("platformPlugins").map { + it.split(',') + "com.intellij.gradle" + }, + ) pluginVerifier() zipSigner() diff --git a/gradle.properties b/gradle.properties index 44c829f71..691a13987 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = org.jetbrains.research.testspark pluginName = TestSpark # SemVer format -> https://semver.org -pluginVersion = 0.4.1 +pluginVersion = 0.4.2 evosuiteVersion = 1.0.5 kexVersion = 0.0.8 @@ -12,7 +12,7 @@ kexVersion = 0.0.8 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. pluginSinceBuild = 242 -pluginUntilBuild = 252.* +pluginUntilBuild = 253.* # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties platformType = IC diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 6f0d2c8bc..9c7e6f285 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -36,6 +36,10 @@ ]]> 0.4.2 +

0.4.1