From 34b19c73846edc6ac7d5458986311b3321c71c74 Mon Sep 17 00:00:00 2001 From: "Vassiliy.Kudryashov" Date: Wed, 6 Jul 2022 16:45:14 +0300 Subject: [PATCH 1/2] Prepare plugin for 2022.7-beta release #441 --- build.gradle | 2 +- .../src/main/resources/META-INF/plugin.xml | 19 +++++++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 02ef9119b3..6026e380a9 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ apply plugin: 'java' if (project.hasProperty('semVer')) { project.version = project.semVer } else { - project.version = '1.0-SNAPSHOT' + project.version = '2022.7-SNAPSHOT' } buildscript { diff --git a/utbot-intellij/src/main/resources/META-INF/plugin.xml b/utbot-intellij/src/main/resources/META-INF/plugin.xml index 7d006496d0..f349c1a191 100644 --- a/utbot-intellij/src/main/resources/META-INF/plugin.xml +++ b/utbot-intellij/src/main/resources/META-INF/plugin.xml @@ -4,8 +4,7 @@ org.utbot.intellij.plugin.id UnitTestBot utbot.org - - UnitTestBot plugin for IntelliJ IDEA for Java + 2022.7-beta com.intellij.modules.platform com.intellij.modules.java @@ -70,5 +69,21 @@ Found an issue? Please, submit it here. ]]> + + +
  • Java 11 support.
  • +
  • Smart Fuzzer significantly improves test generation results.
  • +
  • Generated tests have become even more human-readable and user-friendly.
  • +
  • We have enabled Mac OS X platform, give it a try.
  • +
  • The UnitTestBot engine generates SARIF reports.
  • +
  • We have polished plugin UX.
  • +
  • Mocking support is enhanced.
  • +
  • Java Streams, better Java Optional support, Java String support is improved, package-private constructors now are used for the test generation.
  • + + Discover everything mentioned above and much more in this release. + ]]> +
    From b24e1f1a102883169788405008066572b47ce260 Mon Sep 17 00:00:00 2001 From: "Vassiliy.Kudryashov" Date: Wed, 6 Jul 2022 16:52:27 +0300 Subject: [PATCH 2/2] Prepare plugin for 2022.7-beta release #441 Rollback changes in build.gradle because '1.0-SNAPSHOT' is widely used codename in our scripts --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 6026e380a9..02ef9119b3 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ apply plugin: 'java' if (project.hasProperty('semVer')) { project.version = project.semVer } else { - project.version = '2022.7-SNAPSHOT' + project.version = '1.0-SNAPSHOT' } buildscript {