Skip to content

Commit

Permalink
release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lecousin committed Nov 29, 2020
1 parent 4e789d6 commit 3a8b102
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 16 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

net.lecousin.reactive-data-relational
[![Maven Central](https://img.shields.io/maven-central/v/net.lecousin.reactive-data-relational/core.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22reactive-data-relational%22%20AND%20a%3A%22core%22)
[![Javadoc](https://img.shields.io/badge/javadoc-0.1.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.reactive-data-relational/core/0.1.0)
[![Javadoc](https://img.shields.io/badge/javadoc-0.2.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.reactive-data-relational/core/0.2.0)
![build status](https://travis-ci.org/lecousin/lc-spring-data-r2dbc.svg?branch=master "Build Status")
[![Codecov](https://codecov.io/gh/lecousin/lc-spring-data-r2dbc/branch/master/graph/badge.svg)](https://codecov.io/gh/lecousin/lc-spring-data-r2dbc/branch/master)

Expand All @@ -25,7 +25,8 @@ this library aims at providing the most useful features that are really missing
- Select statement with joins
- Save (insert/update) with cascade
- Delete with cascade
- Schema generation
- Schema generation, with indexes and foreign key constraints
- Composite Id

## Supported databases

Expand All @@ -35,7 +36,7 @@ this library aims at providing the most useful features that are really missing

## Dependencies

- Spring Boot (org.springframework.boot:spring-boot-starter-data-r2dbc) version 2.3.6.RELEASE, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/org.springframework.boot/spring-boot-starter-data-r2dbc.svg)
- Spring Boot (org.springframework.boot:spring-boot-starter-data-r2dbc) version 2.4.0, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/org.springframework.boot/spring-boot-starter-data-r2dbc.svg)
- H2 (io.r2dbc:r2dbc-h2) version 0.8.4.RELEASE, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/io.r2dbc/r2dbc-h2.svg)
- MySql (dev.miku:r2dbc-mysql) version 0.8.2.RELEASE, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/dev.miku/r2dbc-mysql.svg)
- Postgres (io.r2dbc:r2dbc-postgresql) version 0.8.6.RELEASE, Latest version: ![Maven Central](https://img.shields.io/maven-central/v/io.r2dbc/r2dbc-postgresql.svg)
Expand All @@ -52,7 +53,7 @@ Add the Maven dependency, depending on your database:
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>h2</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```

Expand All @@ -62,7 +63,7 @@ Add the Maven dependency, depending on your database:
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>postgres</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```

Expand All @@ -72,7 +73,7 @@ Add the Maven dependency, depending on your database:
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>mysql</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```

Expand Down Expand Up @@ -131,7 +132,7 @@ In addition, in order to make sure the initializer is launched before any test c
<dependency>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>test-junit-5</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>core</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion core/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<logger name="org.springframework.data.r2dbc" level="debug"/>
<logger name="org.springframework.r2dbc" level="debug"/>
<logger name="net.lecousin.reactive.data.relational" level="debug"/>
-->
<logger name="net.lecousin.reactive.data.relational.schema" level="debug"/>
-->

</configuration>
2 changes: 1 addition & 1 deletion h2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>h2</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion jacoco-report-aggregate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>jacoco-report-aggregate</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>mysql</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
<packaging>pom</packaging>

<name>net.lecousin.reactive-data-relational aka lc-spring-data-r2dbc</name>
Expand Down
2 changes: 1 addition & 1 deletion postgres/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>postgres</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion test-junit-5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>test-junit-5</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion test-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>net.lecousin.reactive-data-relational</groupId>
<artifactId>parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.2.0</version>
</parent>
<artifactId>test-spring-boot</artifactId>

Expand Down

0 comments on commit 3a8b102

Please sign in to comment.