Skip to content

Commit a37cdc2

Browse files
Artem LabazinArtem Labazin
authored andcommitted
Correct version tag
1 parent f404a05 commit a37cdc2

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
- Add EPMD server.
1313
- Add more unit and integration tests.
1414

15-
## [0.2.1](https://github.com/appulse-projects/epmd-java/releases/tag/0.2.1) - 2018-01-29
15+
## [0.2.2](https://github.com/appulse-projects/epmd-java/releases/tag/0.2.2) - 2018-01-29
1616

1717
### Added
1818

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.2.1</version>
17+
<version>0.2.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.2.1'
26+
compile 'io.appulse.epmd.java:client:0.2.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.2.1</version>
28+
<version>0.2.2</version>
2929
</parent>
3030

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

client/src/main/java/io/appulse/epmd/java/client/Connection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
/**
4242
*
4343
* @author Artem Labazin
44-
* @since 0.2.1
44+
* @since 0.2.2
4545
*/
4646
@Slf4j
4747
@RequiredArgsConstructor

client/src/main/java/io/appulse/epmd/java/client/EpmdClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* EPMD client.
4848
*
4949
* @author Artem Labazin
50-
* @since 0.2.1
50+
* @since 0.2.2
5151
*/
5252
@Slf4j
5353
@FieldDefaults(level = PRIVATE, makeFinal = true)

client/src/main/java/io/appulse/epmd/java/client/LookupService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/**
4040
*
4141
* @author Artem Labazin
42-
* @since 0.2.1
42+
* @since 0.2.2
4343
*/
4444
@Slf4j
4545
@RequiredArgsConstructor

client/src/main/java/io/appulse/epmd/java/client/NodesLocatorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
*
3636
* @author Artem Labazin
37-
* @since 0.2.1
37+
* @since 0.2.2
3838
*/
3939
@Slf4j
4040
@RequiredArgsConstructor

client/src/main/java/io/appulse/epmd/java/client/exception/EpmdConnectionException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
*
2121
* @author Artem Labazin
22-
* @since 0.2.1
22+
* @since 0.2.2
2323
*/
2424
public class EpmdConnectionException extends RuntimeException {
2525

client/src/main/java/io/appulse/epmd/java/client/exception/EpmdRegistrationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
*
2121
* @author Artem Labazin
22-
* @since 0.2.1
22+
* @since 0.2.2
2323
*/
2424
public class EpmdRegistrationException extends RuntimeException {
2525

client/src/test/java/io/appulse/epmd/java/client/LocalEpmdClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
/**
4343
*
4444
* @author Artem Labazin
45-
* @since 0.2.1
45+
* @since 0.2.2
4646
*/
4747
@FieldDefaults(level = PRIVATE)
4848
public class LocalEpmdClientTest {

0 commit comments

Comments
 (0)