Skip to content

Commit f4aa20f

Browse files
committed
Version bump to 0.1.5 [skip ci]
1 parent 9b14b1a commit f4aa20f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.1.5 (unreleased)
1+
## 0.1.5 (2024-06-25)
22

33
- Added support for `halfvec`, `bit`, and `sparsevec` types
44
- Added `registerTypes` function

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

2121
For 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

2727
For 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");
5555
Register the vector type with your connection
5656

5757
```java
58-
PGvector.addVectorType(conn);
58+
PGvector.registerTypes(conn);
5959
```
6060

6161
Create a table
@@ -236,7 +236,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector")
236236
Register the vector type with your connection
237237

238238
```kotlin
239-
PGvector.addVectorType(conn)
239+
PGvector.registerTypes(conn)
240240
```
241241

242242
Create a table
@@ -296,7 +296,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector")
296296
Register the vector type with your connection
297297

298298
```groovy
299-
PGvector.addVectorType(conn)
299+
PGvector.registerTypes(conn)
300300
```
301301

302302
Create a table
@@ -404,7 +404,7 @@ setupStmt.executeUpdate("CREATE EXTENSION IF NOT EXISTS vector")
404404
Register the vector type with your connection
405405

406406
```scala
407-
PGvector.addVectorType(conn)
407+
PGvector.registerTypes(conn)
408408
```
409409

410410
Create a table

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<packaging>jar</packaging>
77
<description>pgvector support for Java, Kotlin, Groovy, and Scala</description>
88
<url>https://github.com/pgvector/pgvector-java</url>
9-
<version>0.1.4</version>
9+
<version>0.1.5</version>
1010
<licenses>
1111
<license>
1212
<name>MIT</name>

0 commit comments

Comments
 (0)