Skip to content

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
Release: com.io7m.jwheatsheaf 2.0.1
Change: Enable CheckStyle to enforce code style
  • Loading branch information
io7m committed Apr 10, 2020
2 parents d8ef51b + 111d84b commit 27062f2
Show file tree
Hide file tree
Showing 20 changed files with 432 additions and 197 deletions.
9 changes: 7 additions & 2 deletions README-CHANGES.xml
Expand Up @@ -29,9 +29,14 @@
</c:change>
</c:changes>
</c:release>
<c:release date="2020-04-04T14:29:42+00:00" ticket-system="com.github.io7m.jwheatsheaf" version="2.0.0">
<c:release date="2020-04-04T00:00:00+00:00" ticket-system="com.github.io7m.jwheatsheaf" version="2.0.0">
<c:changes>
<c:change compatible="false" date="2020-04-04T14:29:42+00:00" summary="Move implementation classes in the ui module into an internal non-exported package"/>
<c:change compatible="false" date="2020-04-04T00:00:00+00:00" summary="Move implementation classes in the ui module into an internal non-exported package"/>
</c:changes>
</c:release>
<c:release date="2020-04-10T14:35:31+00:00" ticket-system="com.github.io7m.jwheatsheaf" version="2.0.1">
<c:changes>
<c:change date="2020-04-10T14:35:31+00:00" summary="Enable CheckStyle to enforce code style"/>
</c:changes>
</c:release>
</c:releases>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jwheatsheaf.api/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jwheatsheaf</artifactId>
<groupId>com.io7m.jwheatsheaf</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>com.io7m.jwheatsheaf.api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jwheatsheaf.documentation/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jwheatsheaf</artifactId>
<groupId>com.io7m.jwheatsheaf</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>com.io7m.jwheatsheaf.documentation</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jwheatsheaf.examples/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jwheatsheaf</artifactId>
<groupId>com.io7m.jwheatsheaf</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>com.io7m.jwheatsheaf.examples</artifactId>
Expand Down
Expand Up @@ -30,6 +30,15 @@ public final class ExampleApplication extends Application
private static final Logger LOG =
LoggerFactory.getLogger(ExampleApplication.class);

/**
* Construct an application.
*/

public ExampleApplication()
{

}

@Override
public void start(final Stage stage)
throws Exception
Expand Down
Expand Up @@ -19,7 +19,6 @@
import com.io7m.jwheatsheaf.api.JWFileImageSetType;
import com.io7m.jwheatsheaf.oxygen.JWOxygenIconSet;
import com.io7m.jwheatsheaf.ui.JWFileChoosers;
import com.io7m.jwheatsheaf.ui.internal.JWFileImageDefaultSet;

import java.util.Map;
import java.util.Objects;
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jwheatsheaf.oxygen/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jwheatsheaf</artifactId>
<groupId>com.io7m.jwheatsheaf</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>com.io7m.jwheatsheaf.oxygen</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jwheatsheaf.tests/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jwheatsheaf</artifactId>
<groupId>com.io7m.jwheatsheaf</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>com.io7m.jwheatsheaf.tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jwheatsheaf.ui/pom.xml
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jwheatsheaf</artifactId>
<groupId>com.io7m.jwheatsheaf</groupId>
<version>2.0.0</version>
<version>2.0.1</version>
</parent>

<artifactId>com.io7m.jwheatsheaf.ui</artifactId>
Expand Down

0 comments on commit 27062f2

Please sign in to comment.