Skip to content

Commit

Permalink
release 5.4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gtoison committed Oct 30, 2022
1 parent 71308b5 commit 7721e0f
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 9 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ On Windows we can use `certutil` and upload the content between the `BEGIN CERTI

- Test, obviously
- Create a new branch for a pull request
- Add the changelog to the IntelliJ `plugin.xml` file
- Upgrade the `pom.xml` version: at the root of the project:

`
Expand Down
2 changes: 1 addition & 1 deletion functional-tests/infinitest-runner-spock-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
<relativePath>../../</relativePath>
</parent>
<artifactId>infinitest-runner-spock-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-classloader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>

<name>Infinitest ClassLoader</name>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-eclipse-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>
<artifactId>infinitest-eclipse-feature</artifactId>
<name>Infinitest Feature for Eclipse</name>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-eclipse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>

<name>Infinitest Plugin for Eclipse</name>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-intellij/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>

<name>Infinitest for IntelliJ</name>
Expand Down
14 changes: 14 additions & 0 deletions infinitest-intellij/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
<description>Infinitest is a continuous test runner for Java, and is valuable to developers using a unit testing tool called JUnit. Continuous testing is the practice of constantly running unit tests while developers make changes to source code. Kind of like a spellchecker, except that instead of looking for spelling errors like a regular spellchecker, or looking for syntax errors like many IDE's do, Infinitest constantly looks for logical errors and immediately identifies them. It does this by running an optimized set of unit tests every time a developer makes a change to source code.</description>
<version>${project.parent.version}</version>
<vendor url="http://infinitest.github.io/">Infinitest</vendor>

<change-notes><![CDATA[
<h2>5.4.0</h2>
<ul>
<li>Infinitest is no longer a facet, just build the project to use it.</li>
<li>Spock 2 support</li>
<li>ArchUnit support</li>
<li>Disable Infinitest when Power Save mode is on</li>
<li>Fix for projects in folders using symbolic links</li>
<li>Adjustable log level in the Logging view.</li>
</ul>
]]>
</change-notes>

<idea-version since-build="193"/>

<depends>com.intellij.modules.platform</depends>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>

<name>Infinitest Lib</name>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-runner-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>
<artifactId>infinitest-runner-test</artifactId>
<name>infinitest-runner-test</name>
Expand Down
2 changes: 1 addition & 1 deletion infinitest-runner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.infinitest</groupId>
<artifactId>infinitest-parent</artifactId>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
</parent>

<name>Infinitest Runner</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>infinitest-parent</artifactId>
<packaging>pom</packaging>
<name>Infinitest Parent POM</name>
<version>5.3.2-SNAPSHOT</version>
<version>5.4.0.2</version>
<url>http://infinitest.github.com/</url>

<modules>
Expand Down

0 comments on commit 7721e0f

Please sign in to comment.