Skip to content

Commit 3012bb3

Browse files
Artem LabazinArtem Labazin
authored andcommitted
Update readmes
1 parent 47bf05d commit 3012bb3

File tree

43 files changed

+65
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+65
-54
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.2](https://github.com/appulse-projects/encon-java/releases/tag/1.6.2) - 2018-09-06
26+
27+
### Added
28+
29+
- Many new example projects.
30+
31+
### Changed
32+
33+
- Names of some properties in `Defaults` and `NodeConfig` configurations, for better compatibility with `Spring` and its way of config instanctiation;
34+
- Completed readme files.
35+
2536
## [1.6.1](https://github.com/appulse-projects/encon-java/releases/tag/1.6.1) - 2018-09-05
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.1 ........................................ SUCCESS [ 0.116 s]
49+
[INFO] encon 1.6.2 ........................................ 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.1 .................................... SUCCESS [ 1.659 s]
60+
[INFO] benchmark 1.6.2 .................................... 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.1</version>
28+
<version>1.6.2</version>
2929
</parent>
3030

3131
<artifactId>benchmark</artifactId>

encon-common/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.1</version>
28+
<version>1.6.2</version>
2929
</parent>
3030

3131
<artifactId>encon-common</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.1</version>
17+
<version>1.6.2</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.1'
26+
compile 'io.appulse.encon.java:encon-config:1.6.2'
2727
```
2828

2929
### File based configuration

encon-config/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.1</version>
28+
<version>1.6.2</version>
2929
</parent>
3030

3131
<artifactId>encon-config</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.1</version>
17+
<version>1.6.2</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.1'
26+
compile 'io.appulse.encon.java:encon-databind:1.6.2'
2727
```
2828

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

encon-databind/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.1</version>
28+
<version>1.6.2</version>
2929
</parent>
3030

3131
<artifactId>encon-databind</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.1</version>
17+
<version>1.6.2</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.1'
26+
compile 'io.appulse.encon.java:encon-handler:1.6.2'
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.1</version>
28+
<version>1.6.2</version>
2929
</parent>
3030

3131
<artifactId>encon-handler</artifactId>

0 commit comments

Comments
 (0)