Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
landawn committed Jul 25, 2022
1 parent 7679a7c commit 2a78581
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### 3.1.9

* Improvements and bug fix.


### 3.1.8

* Improvements and bug fix.


### 3.1.7

* Improvements and bug fix.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# abacus-jdbc

[![Maven Central](https://img.shields.io/maven-central/v/com.landawn/abacus-jdbc.svg)](https://maven-badges.herokuapp.com/maven-central/com.landawn/abacus-jdbc/)
[![Javadocs](https://img.shields.io/badge/javadoc-3.1.8-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-jdbc/3.1.8/index.html)
[![Javadocs](https://img.shields.io/badge/javadoc-3.1.9-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-jdbc/3.1.9/index.html)

Hope it will bring you the programming experiences: coding with SQL/DB is just like coding with Collections.

Expand Down Expand Up @@ -173,7 +173,7 @@ userDao.deleteById(100L);
* Gradle:
```gradle
// JDK 1.8 or above:
compile 'com.landawn:abacus-jdbc:3.1.8'
compile 'com.landawn:abacus-jdbc:3.1.9'
```

## User Guide:
Expand Down
4 changes: 2 additions & 2 deletions maven/0.0.1-SNAPSHOT/abacus-jdbc-0.0.1-SNAPSHOT.pom
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@
<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-common</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
</dependency>

<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-query</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.landawn</groupId>
<artifactId>abacus-jdbc</artifactId>
<version>3.1.9</version>
<version>3.2.0</version>
<packaging>jar</packaging>

<name>abacus-jdbc</name>
Expand All @@ -29,14 +29,14 @@
<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-common</artifactId>
<version>3.2.2</version>
<version>3.2.3</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-query</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit 2a78581

Please sign in to comment.