Skip to content

Commit 6f973bd

Browse files
Artem LabazinArtem Labazin
authored andcommitted
correct version
1 parent d5196a1 commit 6f973bd

File tree

25 files changed

+33
-33
lines changed

25 files changed

+33
-33
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2424
- Do we really need `ErlangInteger.cache` methods?
2525
- Add atom's table equivalent.
2626

27-
## [1.6.8](https://github.com/appulse-projects/encon-java/releases/tag/1.6.8) - 2019-04-07
27+
## [1.6.9](https://github.com/appulse-projects/encon-java/releases/tag/1.6.9) - 2019-04-07
2828

2929
### Changed
3030

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ $> mvn clean compile
5050
[INFO] ------------------------------------------------------------------------
5151
[INFO] Reactor Summary:
5252
[INFO]
53-
[INFO] encon 1.6.8 ........................................ SUCCESS [ 1.210 s]
53+
[INFO] encon 1.6.9 ........................................ SUCCESS [ 1.210 s]
5454
[INFO] encon-common ....................................... SUCCESS [ 25.693 s]
5555
[INFO] encon-terms ........................................ SUCCESS [ 27.517 s]
5656
[INFO] encon-config ....................................... SUCCESS [ 18.707 s]
@@ -68,7 +68,7 @@ $> mvn clean compile
6868
[INFO] handler-advanced ................................... SUCCESS [ 11.289 s]
6969
[INFO] load-config ........................................ SUCCESS [ 3.725 s]
7070
[INFO] load-config-spring ................................. SUCCESS [ 6.420 s]
71-
[INFO] benchmark 1.6.8 .................................... SUCCESS [ 5.594 s]
71+
[INFO] benchmark 1.6.9 .................................... SUCCESS [ 5.594 s]
7272
[INFO] ------------------------------------------------------------------------
7373
[INFO] BUILD SUCCESS
7474
[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.8</version>
28+
<version>1.6.9</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.8</version>
28+
<version>1.6.9</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
@@ -19,7 +19,7 @@ First of all, add config's dependency:
1919
<dependency>
2020
<groupId>io.appulse.encon</groupId>
2121
<artifactId>encon-config</artifactId>
22-
<version>1.6.8</version>
22+
<version>1.6.9</version>
2323
</dependency>
2424
...
2525
</dependencies>
@@ -28,7 +28,7 @@ First of all, add config's dependency:
2828
**Gradle**:
2929

3030
```groovy
31-
compile 'io.appulse.encon:encon-config:1.6.8'
31+
compile 'io.appulse.encon:encon-config:1.6.9'
3232
```
3333

3434
### 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.8</version>
28+
<version>1.6.9</version>
2929
</parent>
3030

3131
<artifactId>encon-config</artifactId>

encon-databind/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ First of all, add databind's dependency:
1919
<dependency>
2020
<groupId>io.appulse.encon</groupId>
2121
<artifactId>encon</artifactId>
22-
<version>1.6.8</version>
22+
<version>1.6.9</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>io.appulse.encon</groupId>
2626
<artifactId>encon-databind</artifactId>
27-
<version>1.6.8</version>
27+
<version>1.6.9</version>
2828
</dependency>
2929
...
3030
</dependencies>
@@ -33,8 +33,8 @@ First of all, add databind's dependency:
3333
**Gradle**:
3434

3535
```groovy
36-
compile 'io.appulse.encon:encon:1.6.8'
37-
compile 'io.appulse.encon:encon-databind:1.6.8'
36+
compile 'io.appulse.encon:encon:1.6.9'
37+
compile 'io.appulse.encon:encon-databind:1.6.9'
3838
```
3939

4040
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.8</version>
28+
<version>1.6.9</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
@@ -19,7 +19,7 @@ First of all, add dependency:
1919
<dependency>
2020
<groupId>io.appulse.encon</groupId>
2121
<artifactId>encon-handler</artifactId>
22-
<version>1.6.8</version>
22+
<version>1.6.9</version>
2323
</dependency>
2424
...
2525
</dependencies>
@@ -28,7 +28,7 @@ First of all, add dependency:
2828
**Gradle**:
2929

3030
```groovy
31-
compile 'io.appulse.encon:encon-handler:1.6.8'
31+
compile 'io.appulse.encon:encon-handler:1.6.9'
3232
```
3333

3434
### 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.8</version>
28+
<version>1.6.9</version>
2929
</parent>
3030

3131
<artifactId>encon-handler</artifactId>

0 commit comments

Comments
 (0)