@@ -14,14 +14,14 @@ For Maven, add to `pom.xml` under `<dependencies>`:
1414<dependency >
1515 <groupId >com.pgvector</groupId >
1616 <artifactId >pgvector</artifactId >
17- <version >0.1.4 </version >
17+ <version >0.1.5 </version >
1818</dependency >
1919```
2020
2121For sbt, add to ` build.sbt ` :
2222
2323``` sbt
24- libraryDependencies += " com.pgvector" % " pgvector" % " 0.1.4 "
24+ libraryDependencies += " com.pgvector" % " pgvector" % " 0.1.5 "
2525```
2626
2727For other build tools, see [ this page] ( https://central.sonatype.com/artifact/com.pgvector/pgvector ) .
@@ -55,7 +55,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector");
5555Register the vector type with your connection
5656
5757``` java
58- PGvector . addVectorType (conn);
58+ PGvector . registerTypes (conn);
5959```
6060
6161Create a table
@@ -236,7 +236,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector")
236236Register the vector type with your connection
237237
238238``` kotlin
239- PGvector .addVectorType (conn)
239+ PGvector .registerTypes (conn)
240240```
241241
242242Create a table
@@ -296,7 +296,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector")
296296Register the vector type with your connection
297297
298298``` groovy
299- PGvector.addVectorType (conn)
299+ PGvector.registerTypes (conn)
300300```
301301
302302Create a table
@@ -404,7 +404,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector")
404404Register the vector type with your connection
405405
406406``` scala
407- PGvector .addVectorType (conn)
407+ PGvector .registerTypes (conn)
408408```
409409
410410Create a table
0 commit comments