Skip to content

Commit 911c491

Browse files
committed
Documentation improvements
1 parent a4fd7ad commit 911c491

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,16 @@ To use the java-api library, add this to the `<dependencies>` section of your `p
4040
<dependency>
4141
<groupId>org.utplsql</groupId>
4242
<artifactId>java-api</artifactId>
43-
<version>3.1.0</version>
43+
<version>3.1.2</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
4747

4848
## Compatibility
4949
The latest Java-API is always compatible with all database frameworks of the same major version.
50-
For example API-3.0.4 is compatible with database framework 3.0.0-3.1.0 but not with database framework 2.x.
50+
For example API-3.0.4 is compatible with database framework 3.0.0-3.1.2 but not with database framework 2.x.
51+
52+
It is although recommended to always use the latest release of the API to build your tools for utPLSQL.
5153

5254
## Usage
5355

@@ -84,7 +86,9 @@ try (Connection conn = DriverManager.getConnection(url)) {
8486

8587
### Optional Features
8688

87-
There might be some features which are not available in previous versions of utPLSQL. These "optional features" are listed in the enum org.utplsql.api.compatibility.OptionalFeatures and their availability can be checked against a connection or Version-object:
89+
There might be some features which are not available in previous versions of utPLSQL.
90+
These "optional features" are listed in the enum org.utplsql.api.compatibility.OptionalFeatures
91+
and their availability can be checked against a connection or Version-object:
8892

8993
```OptionalFeatures.CUSTOM_REPORTERS.isAvailableFor( databaseConnection );```
9094

0 commit comments

Comments
 (0)