File tree Expand file tree Collapse file tree 13 files changed +45
-107
lines changed
src/test/java/io/appulse/epmd/java/client
main/java/io/appulse/epmd/java/server/command/server/handler/command
test/java/io/appulse/epmd/java/server/command/server Expand file tree Collapse file tree 13 files changed +45
-107
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
11
11
12
12
- Add more unit and integration tests.
13
13
14
+ ## [ 1.0.1] ( https://github.com/appulse-projects/epmd-java/releases/tag/1.0.1 ) - 2018-03-23
15
+
16
+ Small refactoring.
17
+
18
+ ### Changed
19
+
20
+ - Server generates ` creation ` from 1 to 3 now.
21
+ - Small bug fixes.
22
+ - Updated dependencies.
23
+
14
24
## [ 1.0.0] ( https://github.com/appulse-projects/epmd-java/releases/tag/1.0.0 ) - 2018-03-16
15
25
16
26
Code style refactoring.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Include the dependency to your project's pom.xml file:
14
14
<dependency >
15
15
<groupId >io.appulse.epmd.java</groupId >
16
16
<artifactId >client</artifactId >
17
- <version >1.0.0 </version >
17
+ <version >1.0.1 </version >
18
18
</dependency >
19
19
...
20
20
</dependencies >
@@ -23,7 +23,7 @@ Include the dependency to your project's pom.xml file:
23
23
or Gradle:
24
24
25
25
``` groovy
26
- compile 'io.appulse.epmd.java:client:1.0.0 '
26
+ compile 'io.appulse.epmd.java:client:1.0.1 '
27
27
```
28
28
29
29
### Create client
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ limitations under the License.
25
25
<parent >
26
26
<groupId >io.appulse</groupId >
27
27
<artifactId >epmd-java</artifactId >
28
- <version >1.0.0 </version >
28
+ <version >1.0.1 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.epmd.java</groupId >
Original file line number Diff line number Diff line change 28
28
import io .appulse .epmd .java .client .exception .EpmdRegistrationException ;
29
29
import io .appulse .epmd .java .client .util .CheckLocalEpmdExists ;
30
30
import io .appulse .epmd .java .client .util .LocalEpmdHelper ;
31
- import io .appulse .epmd . java . client . util . TestNamePrinter ;
31
+ import io .appulse .utils . test . TestMethodNamePrinter ;
32
32
33
33
import lombok .experimental .FieldDefaults ;
34
34
import lombok .val ;
@@ -52,7 +52,7 @@ public class LocalEpmdClientTest {
52
52
public static CheckLocalEpmdExists localEpmdExists = new CheckLocalEpmdExists ();
53
53
54
54
@ Rule
55
- public TestRule watcher = new TestNamePrinter ();
55
+ public TestRule watcher = new TestMethodNamePrinter ();
56
56
57
57
EpmdClient client ;
58
58
Original file line number Diff line number Diff line change 25
25
26
26
import java .time .Duration ;
27
27
28
- import io .appulse .epmd . java . client . util . TestNamePrinter ;
28
+ import io .appulse .utils . test . TestMethodNamePrinter ;
29
29
30
30
import lombok .SneakyThrows ;
31
31
import lombok .experimental .FieldDefaults ;
@@ -66,7 +66,7 @@ protected void waitUntilReady () {
66
66
});
67
67
68
68
@ Rule
69
- public TestRule watcher = new TestNamePrinter ();
69
+ public TestRule watcher = new TestMethodNamePrinter ();
70
70
71
71
EpmdClient client ;
72
72
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ limitations under the License.
25
25
<parent >
26
26
<groupId >io.appulse</groupId >
27
27
<artifactId >epmd-java</artifactId >
28
- <version >1.0.0 </version >
28
+ <version >1.0.1 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.epmd.java</groupId >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ limitations under the License.
24
24
25
25
<groupId >io.appulse</groupId >
26
26
<artifactId >epmd-java</artifactId >
27
- <version >1.0.0 </version >
27
+ <version >1.0.1 </version >
28
28
<packaging >pom</packaging >
29
29
30
30
<modules >
@@ -68,7 +68,7 @@ limitations under the License.
68
68
<url >https://github.com/appulse-projects/epmd-java</url >
69
69
<connection >scm:git:https://github.com/appulse-projects/epmd-java.git</connection >
70
70
<developerConnection >scm:git:https://github.com/appulse-projects/epmd-java.git</developerConnection >
71
- <tag >1.0.0 </tag >
71
+ <tag >1.0.1 </tag >
72
72
</scm >
73
73
74
74
<distributionManagement >
@@ -116,7 +116,7 @@ limitations under the License.
116
116
<dependency >
117
117
<groupId >io.appulse</groupId >
118
118
<artifactId >utils-java</artifactId >
119
- <version >1.3.3 </version >
119
+ <version >1.5.0 </version >
120
120
</dependency >
121
121
122
122
<dependency >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Include the dependency to your project's pom.xml file:
18
18
<dependency >
19
19
<groupId >io.appulse.epmd.java</groupId >
20
20
<artifactId >server</artifactId >
21
- <version >1.0.0 </version >
21
+ <version >1.0.1 </version >
22
22
</dependency >
23
23
...
24
24
</dependencies >
@@ -27,5 +27,5 @@ Include the dependency to your project's pom.xml file:
27
27
or Gradle:
28
28
29
29
``` groovy
30
- compile 'io.appulse.epmd.java:server:1.0.0 '
30
+ compile 'io.appulse.epmd.java:server:1.0.1 '
31
31
```
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ limitations under the License.
25
25
<parent >
26
26
<groupId >io.appulse</groupId >
27
27
<artifactId >epmd-java</artifactId >
28
- <version >1.0.0 </version >
28
+ <version >1.0.1 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.epmd.java</groupId >
You can’t perform that action at this time.
0 commit comments