Skip to content

Commit 1961a29

Browse files
Artem LabazinArtem Labazin
authored andcommitted
Minor release
1 parent 6132f47 commit 1961a29

File tree

23 files changed

+392
-71
lines changed

23 files changed

+392
-71
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2222
- Turn on checkstyle JavaDocs module.
2323
- Add updates to the protocol, like new `ControlMessage`.
2424

25+
## [1.6.1](https://github.com/appulse-projects/encon-java/releases/tag/1.6.1) - 2018-09-05
26+
27+
### Added
28+
29+
- Simple example project.
30+
31+
### Changed
32+
33+
- Node creation respects config's `shortName` flag now.
34+
35+
2536
## [1.6.0](https://github.com/appulse-projects/encon-java/releases/tag/1.6.0) - 2018-08-21
2637

2738
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $> mvn clean compile
4646
[INFO] ------------------------------------------------------------------------
4747
[INFO] Reactor Summary:
4848
[INFO]
49-
[INFO] encon 1.6.0 ........................................ SUCCESS [ 0.116 s]
49+
[INFO] encon 1.6.1 ........................................ SUCCESS [ 0.116 s]
5050
[INFO] encon-common ....................................... SUCCESS [ 10.523 s]
5151
[INFO] encon-terms ........................................ SUCCESS [ 10.679 s]
5252
[INFO] encon-config ....................................... SUCCESS [ 7.860 s]
@@ -57,7 +57,7 @@ $> mvn clean compile
5757
[INFO] examples ........................................... SUCCESS [ 0.003 s]
5858
[INFO] echo ............................................... SUCCESS [ 1.131 s]
5959
[INFO] echo-spring ........................................ SUCCESS [ 1.217 s]
60-
[INFO] benchmark 1.6.0 .................................... SUCCESS [ 1.659 s]
60+
[INFO] benchmark 1.6.1 .................................... SUCCESS [ 1.659 s]
6161
[INFO] ------------------------------------------------------------------------
6262
[INFO] BUILD SUCCESS
6363
[INFO] ------------------------------------------------------------------------

benchmark/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.encon</groupId>
2727
<artifactId>encon-parent</artifactId>
28-
<version>1.6.0</version>
28+
<version>1.6.1</version>
2929
</parent>
3030

3131
<artifactId>benchmark</artifactId>

encon-common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse.encon</groupId>
2727
<artifactId>encon-parent</artifactId>
28-
<version>1.6.0</version>
28+
<version>1.6.1</version>
2929
</parent>
3030

3131
<artifactId>encon-common</artifactId>
@@ -86,7 +86,7 @@ limitations under the License.
8686
<groupId>org.apache.maven.plugins</groupId>
8787
<artifactId>maven-checkstyle-plugin</artifactId>
8888
</plugin>
89-
89+
9090
<plugin>
9191
<groupId>org.apache.maven.plugins</groupId>
9292
<artifactId>maven-deploy-plugin</artifactId>

encon-config/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ First of all, add config's dependency:
1414
<dependency>
1515
<groupId>io.appulse.encon</groupId>
1616
<artifactId>encon-config</artifactId>
17-
<version>1.6.0</version>
17+
<version>1.6.1</version>
1818
</dependency>
1919
...
2020
</dependencies>
@@ -23,7 +23,7 @@ First of all, add config's dependency:
2323
**Gradle**:
2424

2525
```groovy
26-
compile 'io.appulse.encon.java:encon-config:1.6.0'
26+
compile 'io.appulse.encon.java:encon-config:1.6.1'
2727
```
2828

2929
### File based configuration

encon-config/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse.encon</groupId>
2727
<artifactId>encon-parent</artifactId>
28-
<version>1.6.0</version>
28+
<version>1.6.1</version>
2929
</parent>
3030

3131
<artifactId>encon-config</artifactId>
@@ -96,7 +96,7 @@ limitations under the License.
9696
<groupId>org.apache.maven.plugins</groupId>
9797
<artifactId>maven-checkstyle-plugin</artifactId>
9898
</plugin>
99-
99+
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-deploy-plugin</artifactId>

encon-databind/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ First of all, add databind's dependency:
1414
<dependency>
1515
<groupId>io.appulse.encon</groupId>
1616
<artifactId>encon-databind</artifactId>
17-
<version>1.6.0</version>
17+
<version>1.6.1</version>
1818
</dependency>
1919
...
2020
</dependencies>
@@ -23,7 +23,7 @@ First of all, add databind's dependency:
2323
**Gradle**:
2424

2525
```groovy
26-
compile 'io.appulse.encon.java:encon-databind:1.6.0'
26+
compile 'io.appulse.encon.java:encon-databind:1.6.1'
2727
```
2828

2929
Let's imagine, you have POJO like this:

encon-databind/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ limitations under the License.
2525
<parent>
2626
<groupId>io.appulse.encon</groupId>
2727
<artifactId>encon-parent</artifactId>
28-
<version>1.6.0</version>
28+
<version>1.6.1</version>
2929
</parent>
3030

3131
<artifactId>encon-databind</artifactId>
@@ -96,7 +96,7 @@ limitations under the License.
9696
<groupId>org.apache.maven.plugins</groupId>
9797
<artifactId>maven-checkstyle-plugin</artifactId>
9898
</plugin>
99-
99+
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-deploy-plugin</artifactId>

encon-handler/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ First of all, add dependency:
1414
<dependency>
1515
<groupId>io.appulse.encon</groupId>
1616
<artifactId>encon-handler</artifactId>
17-
<version>1.6.0</version>
17+
<version>1.6.1</version>
1818
</dependency>
1919
...
2020
</dependencies>
@@ -23,7 +23,7 @@ First of all, add dependency:
2323
**Gradle**:
2424

2525
```groovy
26-
compile 'io.appulse.encon.java:encon-handler:1.6.0'
26+
compile 'io.appulse.encon.java:encon-handler:1.6.1'
2727
```
2828

2929
### Basics

encon-handler/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.encon</groupId>
2727
<artifactId>encon-parent</artifactId>
28-
<version>1.6.0</version>
28+
<version>1.6.1</version>
2929
</parent>
3030

3131
<artifactId>encon-handler</artifactId>

0 commit comments

Comments
 (0)