diff --git a/README.md b/README.md
index 99ef8ab..012f846 100644
--- a/README.md
+++ b/README.md
@@ -15,13 +15,13 @@ The dbsetup-csv library is available on Maven Central. You can install it using
### Gradle
```groovy
-testImplementation 'com.sciencesakura:dbsetup-csv:3.0.1'
+testImplementation 'com.sciencesakura:dbsetup-csv:3.0.2'
```
If you are using Kotlin, you can use the Kotlin module for a more concise DSL:
```groovy
-testImplementation 'com.sciencesakura:dbsetup-csv-kt:3.0.1'
+testImplementation 'com.sciencesakura:dbsetup-csv-kt:3.0.2'
```
### Maven
@@ -30,7 +30,7 @@ testImplementation 'com.sciencesakura:dbsetup-csv-kt:3.0.1'
com.sciencesakura
dbsetup-csv
- 3.0.1
+ 3.0.2
test
```
@@ -41,7 +41,7 @@ If you are using Kotlin, you can use the Kotlin module for a more concise DSL:
com.sciencesakura
dbsetup-csv-kt
- 3.0.1
+ 3.0.2
test
```
@@ -57,7 +57,7 @@ import com.ninja_squad.dbsetup.DbSetup;
// The operation to import a CSV file into a table
var operation = csv("test-items.csv").into("items").build();
// when importing a TSV file:
-// var operation = csv("test-items.tsv").into("items").withDelimiter('\t').build();
+// var operation = tsv("test-items.tsv").into("items").build();
// Create a `DbSetup` instance with the operation and execute it
var dbSetup = new DbSetup(destination, operation);
diff --git a/core/pom.xml b/core/pom.xml
index b591a3e..0d40361 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -7,7 +7,7 @@
com.sciencesakura
dbsetup-csv-parent
- 3.0.2-SNAPSHOT
+ 3.0.2
dbsetup-csv
jar
diff --git a/kotlin/pom.xml b/kotlin/pom.xml
index 6534cbb..b553e96 100644
--- a/kotlin/pom.xml
+++ b/kotlin/pom.xml
@@ -7,7 +7,7 @@
com.sciencesakura
dbsetup-csv-parent
- 3.0.2-SNAPSHOT
+ 3.0.2
dbsetup-csv-kt
jar
diff --git a/pom.xml b/pom.xml
index bd54037..0c30bbd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.sciencesakura
dbsetup-csv-parent
- 3.0.2-SNAPSHOT
+ 3.0.2
pom
dbsetup-csv-parent