File tree 26 files changed +40
-32
lines changed
src/main/java/io/appulse/encon/terms/type
26 files changed +40
-32
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
22
22
- Turn on checkstyle JavaDocs module.
23
23
- Add updates to the protocol, like new ` ControlMessage ` .
24
24
25
+ ## [ 1.6.5] ( https://github.com/appulse-projects/encon-java/releases/tag/1.6.5 ) - 2018-09-28
26
+
27
+ ### Changed
28
+
29
+ - Quick fix for [ GitHub issue] ( https://github.com/appulse-projects/encon-java/issues/10 ) , added ` ATOM ` and ` SMALL_ATOM ` serialization.
30
+
25
31
## [ 1.6.4] ( https://github.com/appulse-projects/encon-java/releases/tag/1.6.4 ) - 2018-09-14
26
32
27
33
### Added
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ $> mvn clean compile
46
46
[INFO] ------------------------------------------------------------------------
47
47
[INFO] Reactor Summary:
48
48
[INFO]
49
- [INFO] encon 1.6.4 ........................................ SUCCESS [ 1.210 s]
49
+ [INFO] encon 1.6.5 ........................................ SUCCESS [ 1.210 s]
50
50
[INFO] encon-common ....................................... SUCCESS [ 25.693 s]
51
51
[INFO] encon-terms ........................................ SUCCESS [ 27.517 s]
52
52
[INFO] encon-config ....................................... SUCCESS [ 18.707 s]
@@ -64,7 +64,7 @@ $> mvn clean compile
64
64
[INFO] handler-advanced ................................... SUCCESS [ 11.289 s]
65
65
[INFO] load-config ........................................ SUCCESS [ 3.725 s]
66
66
[INFO] load-config-spring ................................. SUCCESS [ 6.420 s]
67
- [INFO] benchmark 1.6.4 .................................... SUCCESS [ 5.594 s]
67
+ [INFO] benchmark 1.6.5 .................................... SUCCESS [ 5.594 s]
68
68
[INFO] ------------------------------------------------------------------------
69
69
[INFO] BUILD SUCCESS
70
70
[INFO] ------------------------------------------------------------------------
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >benchmark</artifactId >
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon-common</artifactId >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ First of all, add config's dependency:
14
14
<dependency >
15
15
<groupId >io.appulse.encon</groupId >
16
16
<artifactId >encon-config</artifactId >
17
- <version >1.6.4 </version >
17
+ <version >1.6.5 </version >
18
18
</dependency >
19
19
...
20
20
</dependencies >
@@ -23,7 +23,7 @@ First of all, add config's dependency:
23
23
** Gradle** :
24
24
25
25
``` groovy
26
- compile 'io.appulse.encon:encon-config:1.6.4 '
26
+ compile 'io.appulse.encon:encon-config:1.6.5 '
27
27
```
28
28
29
29
### File based configuration
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon-config</artifactId >
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ First of all, add databind's dependency:
14
14
<dependency >
15
15
<groupId >io.appulse.encon</groupId >
16
16
<artifactId >encon</artifactId >
17
- <version >1.6.4 </version >
17
+ <version >1.6.5 </version >
18
18
</dependency >
19
19
<dependency >
20
20
<groupId >io.appulse.encon</groupId >
21
21
<artifactId >encon-databind</artifactId >
22
- <version >1.6.4 </version >
22
+ <version >1.6.5 </version >
23
23
</dependency >
24
24
...
25
25
</dependencies >
@@ -28,8 +28,8 @@ First of all, add databind's dependency:
28
28
** Gradle** :
29
29
30
30
``` groovy
31
- compile 'io.appulse.encon:encon:1.6.4 '
32
- compile 'io.appulse.encon:encon-databind:1.6.4 '
31
+ compile 'io.appulse.encon:encon:1.6.5 '
32
+ compile 'io.appulse.encon:encon-databind:1.6.5 '
33
33
```
34
34
35
35
Let's imagine, you have POJO like this:
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon-databind</artifactId >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ First of all, add dependency:
14
14
<dependency >
15
15
<groupId >io.appulse.encon</groupId >
16
16
<artifactId >encon-handler</artifactId >
17
- <version >1.6.4 </version >
17
+ <version >1.6.5 </version >
18
18
</dependency >
19
19
...
20
20
</dependencies >
@@ -23,7 +23,7 @@ First of all, add dependency:
23
23
** Gradle** :
24
24
25
25
``` groovy
26
- compile 'io.appulse.encon:encon-handler:1.6.4 '
26
+ compile 'io.appulse.encon:encon-handler:1.6.5 '
27
27
```
28
28
29
29
### Basics
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon-handler</artifactId >
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon-spring</artifactId >
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon-terms</artifactId >
Original file line number Diff line number Diff line change @@ -220,9 +220,11 @@ public boolean isTextual () {
220
220
protected void serialize (ByteBuf buffer ) {
221
221
switch (getType ()) {
222
222
case SMALL_ATOM_UTF8 :
223
+ case SMALL_ATOM :
223
224
buffer .writeByte (bytes .length );
224
225
break ;
225
226
case ATOM_UTF8 :
227
+ case ATOM :
226
228
buffer .writeShort (bytes .length );
227
229
break ;
228
230
default :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Adding encon's dependency to your `JVM` app:
21
21
<dependency >
22
22
<groupId >io.appulse.encon</groupId >
23
23
<artifactId >encon</artifactId >
24
- <version >1.6.4 </version >
24
+ <version >1.6.5 </version >
25
25
</dependency >
26
26
...
27
27
</dependencies >
@@ -30,7 +30,7 @@ Adding encon's dependency to your `JVM` app:
30
30
** Gradle** :
31
31
32
32
``` groovy
33
- compile 'io.appulse.encon:encon:1.6.4 '
33
+ compile 'io.appulse.encon:encon:1.6.5 '
34
34
```
35
35
36
36
## Start the Node
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >encon</artifactId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</groupId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</groupId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<dependencyManagement >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</groupId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</groupId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</groupId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<dependencyManagement >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</groupId >
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.encon</groupId >
27
27
<artifactId >encon-parent</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<artifactId >examples</artifactId >
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.encon</groupId >
27
27
<artifactId >examples</artifactId >
28
- <version >1.6.4 </version >
28
+ <version >1.6.5 </version >
29
29
</parent >
30
30
31
31
<groupId >io.appulse.encon.examples</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.encon</groupId >
26
26
<artifactId >encon-parent</artifactId >
27
- <version >1.6.4 </version >
27
+ <version >1.6.5 </version >
28
28
<packaging >pom</packaging >
29
29
30
30
<properties >
@@ -74,7 +74,7 @@ limitations under the License.
74
74
<url >https://github.com/appulse-projects/encon-java</url >
75
75
<connection >scm:git:https://github.com/appulse-projects/encon-java.git</connection >
76
76
<developerConnection >scm:git:https://github.com/appulse-projects/encon-java.git</developerConnection >
77
- <tag >1.6.4 </tag >
77
+ <tag >1.6.5 </tag >
78
78
</scm >
79
79
80
80
<distributionManagement >
You can’t perform that action at this time.
0 commit comments