Skip to content

Commit 9e9ecf7

Browse files
committed
VoidFramework 1.15.0
Signed-off-by: Thibault Meyer <[email protected]>
1 parent 9a4889f commit 9e9ecf7

19 files changed

+37
-22
lines changed

content/doc/cache/cacheengine-inmemory.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This implementation of the cache engine is convenient during the development pha
1919
<dependency>
2020
<groupId>dev.voidframework</groupId>
2121
<artifactId>voidframework-cache</artifactId>
22-
<version>1.14.0</version>
22+
<version>1.15.0</version>
2323
</dependency>
2424
```
2525

content/doc/cache/cacheengine-redis.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This implementation requires the `voidframework-redis` module to be properly con
1919
<dependency>
2020
<groupId>dev.voidframework</groupId>
2121
<artifactId>voidframework-cache-redis</artifactId>
22-
<version>1.14.0</version>
22+
<version>1.15.0</version>
2323
</dependency>
2424
```
2525

content/doc/core/configuration.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ If more than one provider is declared. They will be used in order of declaration
8484
<dependency>
8585
<groupId>dev.voidframework</groupId>
8686
<artifactId>voidframework-remoteconf-etcd</artifactId>
87-
<version>1.14.0</version>
87+
<version>1.15.0</version>
8888
</dependency>
8989
```
9090

@@ -128,7 +128,7 @@ voidframework {
128128
<dependency>
129129
<groupId>dev.voidframework</groupId>
130130
<artifactId>voidframework-remoteconf-http</artifactId>
131-
<version>1.14.0</version>
131+
<version>1.15.0</version>
132132
</dependency>
133133
```
134134

content/doc/getting-started/new-application.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ In this example, we will also use the `web` feature, so the `voidframework-web`
2424
<dependency>
2525
<groupId>dev.voidframework</groupId>
2626
<artifactId>voidframework-core</artifactId>
27-
<version>1.14.0</version>
27+
<version>1.15.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>dev.voidframework</groupId>
3131
<artifactId>voidframework-web</artifactId>
32-
<version>1.14.0</version>
32+
<version>1.15.0</version>
3333
</dependency>
3434
```
3535

content/doc/internationalization/i18n_concept.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To enable this module, just add following lines to the `pom.xml` file of your pr
1818
<dependency>
1919
<groupId>dev.voidframework</groupId>
2020
<artifactId>voidframework-i18n</artifactId>
21-
<version>1.14.0</version>
21+
<version>1.15.0</version>
2222
</dependency>
2323
```
2424

content/doc/nosql-databases/redis.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To enable this module, just add following lines to the `pom.xml` file of your pr
2323
<dependency>
2424
<groupId>dev.voidframework</groupId>
2525
<artifactId>voidframework-redis</artifactId>
26-
<version>1.14.0</version>
26+
<version>1.15.0</version>
2727
</dependency>
2828
```
2929

@@ -56,7 +56,7 @@ If you wan to monitoring Redis health, you can enable the healthcheck module by
5656
<dependency>
5757
<groupId>dev.voidframework</groupId>
5858
<artifactId>voidframework-redis-healthcheck</artifactId>
59-
<version>1.14.0</version>
59+
<version>1.15.0</version>
6060
</dependency>
6161
```
6262

content/doc/relational-databases/datasource.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Note that you can only use one implementation at a time.
2828
<dependency>
2929
<groupId>dev.voidframework</groupId>
3030
<artifactId>voidframework-datasource-c3p0</artifactId>
31-
<version>1.14.0</version>
31+
<version>1.15.0</version>
3232
</dependency>
3333
```
3434

@@ -38,7 +38,7 @@ Note that you can only use one implementation at a time.
3838
<dependency>
3939
<groupId>dev.voidframework</groupId>
4040
<artifactId>voidframework-datasource-hikaricp</artifactId>
41-
<version>1.14.0</version>
41+
<version>1.15.0</version>
4242
</dependency>
4343
```
4444

content/doc/relational-databases/h2-webconsole.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To enable this module, just add following lines to the `pom.xml` file of your pr
2222
<dependency>
2323
<groupId>dev.voidframework</groupId>
2424
<artifactId>voidframework-h2</artifactId>
25-
<version>1.14.0</version>
25+
<version>1.15.0</version>
2626
</dependency>
2727
```
2828

content/doc/relational-databases/persistence-hibernate.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This module adds support for the `Transactional` annotation as well as setting u
2626
<dependency>
2727
<groupId>dev.voidframework</groupId>
2828
<artifactId>voidframework-persistence-hibernate</artifactId>
29-
<version>1.14.0</version>
29+
<version>1.15.0</version>
3030
</dependency>
3131
```
3232

content/doc/relational-databases/persistence-jooq.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This module adds support for the `Transactional` annotation as well as setting u
2222
<dependency>
2323
<groupId>dev.voidframework</groupId>
2424
<artifactId>voidframework-persistence-jooq</artifactId>
25-
<version>1.14.0</version>
25+
<version>1.15.0</version>
2626
</dependency>
2727
```
2828

0 commit comments

Comments
 (0)