Skip to content

Commit 65ea0b3

Browse files
committed
Fix version
1 parent 814561d commit 65ea0b3

23 files changed

+26
-26
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111

1212
- Add more unit and integration tests.
1313

14-
## [0.3.1](https://github.com/appulse-projects/epmd-java/releases/tag/0.3.1) - 2018-01-31
14+
## [0.3.2](https://github.com/appulse-projects/epmd-java/releases/tag/0.3.2) - 2018-01-31
1515

1616
### Added
1717

client/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Include the dependency to your project's pom.xml file:
1414
<dependency>
1515
<groupId>io.appulse.epmd.java</groupId>
1616
<artifactId>client</artifactId>
17-
<version>0.3.1</version>
17+
<version>0.3.2</version>
1818
</dependency>
1919
...
2020
</dependencies>
@@ -23,7 +23,7 @@ Include the dependency to your project's pom.xml file:
2323
or Gradle:
2424

2525
```groovy
26-
compile 'io.appulse.epmd.java:client:0.3.1'
26+
compile 'io.appulse.epmd.java:client:0.3.2'
2727
```
2828

2929
### Create client

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>0.3.1</version>
28+
<version>0.3.2</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>0.3.1</version>
28+
<version>0.3.2</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424

2525
<groupId>io.appulse</groupId>
2626
<artifactId>epmd-java</artifactId>
27-
<version>0.3.1</version>
27+
<version>0.3.2</version>
2828
<packaging>pom</packaging>
2929

3030
<modules>
@@ -68,7 +68,7 @@ limitations under the License.
6868
<url>https://github.com/appulse-projects/epmd-java</url>
6969
<connection>scm:git:https://github.com/appulse-projects/epmd-java.git</connection>
7070
<developerConnection>scm:git:https://github.com/appulse-projects/epmd-java.git</developerConnection>
71-
<tag>0.3.1</tag>
71+
<tag>0.3.2</tag>
7272
</scm>
7373

7474
<distributionManagement>

server/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Include the dependency to your project's pom.xml file:
1818
<dependency>
1919
<groupId>io.appulse.epmd.java</groupId>
2020
<artifactId>server</artifactId>
21-
<version>0.3.1</version>
21+
<version>0.3.2</version>
2222
</dependency>
2323
...
2424
</dependencies>
@@ -27,5 +27,5 @@ Include the dependency to your project's pom.xml file:
2727
or Gradle:
2828

2929
```groovy
30-
compile 'io.appulse.epmd.java:server:0.3.1'
30+
compile 'io.appulse.epmd.java:server:0.3.2'
3131
```

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse</groupId>
2727
<artifactId>epmd-java</artifactId>
28-
<version>0.3.1</version>
28+
<version>0.3.2</version>
2929
</parent>
3030

3131
<groupId>io.appulse.epmd.java</groupId>

server/src/main/java/io/appulse/epmd/java/server/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
*
2626
* @author Artem Labazin
27-
* @since 0.3.1
27+
* @since 0.3.2
2828
*/
2929
@Slf4j
3030
public final class Main {

server/src/main/java/io/appulse/epmd/java/server/cli/CommandLineParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/**
4141
*
4242
* @author Artem Labazin
43-
* @since 0.3.1
43+
* @since 0.3.2
4444
*/
4545
public final class CommandLineParser {
4646

server/src/main/java/io/appulse/epmd/java/server/cli/CommonOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Common parsed program's options holder.
2727
*
2828
* @author Artem Labazin
29-
* @since 0.3.1
29+
* @since 0.3.2
3030
*/
3131
@Data
3232
@FieldDefaults(level = PRIVATE)

0 commit comments

Comments
 (0)