Skip to content

Commit

Permalink
Set version number for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
t-pa committed Dec 4, 2021
1 parent e5b5730 commit ef4cc69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.t-pa</groupId>
<artifactId>solarmaxcom</artifactId>
<version>0.0.1</version>
<version>0.1.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand Down Expand Up @@ -35,24 +35,24 @@
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client</artifactId>
<version>1.2.2</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.0</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.6.0</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.6.0</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/solarmaxcom/SolarMaxCom.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Main class which parses the command line, reads values from a SolarMax device and optionally
* sends the received data via MQTT.
*/
@Command(name = "SolarMaxCom", version = "SolarMaxCom version 0.0.1", mixinStandardHelpOptions = true)
@Command(name = "SolarMaxCom", version = "SolarMaxCom version 0.1.0", mixinStandardHelpOptions = true)
public final class SolarMaxCom implements Runnable {

private static final Logger logger = LoggerFactory.getLogger(SolarMaxCom.class);
Expand Down

0 comments on commit ef4cc69

Please sign in to comment.