Skip to content

Commit 38be81c

Browse files
committed
Version bump to 0.1.3 [skip ci]
1 parent 62cc339 commit 38be81c

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 0.1.3 (unreleased)
1+
## 0.1.3 (2021-05-06)
22

3-
- Fixed version number
3+
- Added Dockerfile
4+
- Fixed version
45

56
## 0.1.2 (2021-04-26)
67

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vector",
33
"abstract": "Open-source vector similarity search for Postgres",
44
"description": "Supports L2 distance, inner product, and cosine distance",
5-
"version": "0.1.2",
5+
"version": "0.1.3",
66
"maintainer": [
77
"Andrew Kane <[email protected]>"
88
],
@@ -20,7 +20,7 @@
2020
"vector": {
2121
"file": "sql/vector.sql",
2222
"docfile": "README.md",
23-
"version": "0.1.2",
23+
"version": "0.1.3",
2424
"abstract": "Open-source vector similarity search for Postgres"
2525
}
2626
},

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
EXTENSION = vector
2-
EXTVERSION = 0.1.2
2+
EXTVERSION = 0.1.3
33

44
MODULE_big = vector
55
DATA = $(wildcard sql/*--*.sql)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Supports L2 distance, inner product, and cosine distance
1717
Compile and install the extension (supports Postgres 9.6+)
1818

1919
```sh
20-
git clone --branch v0.1.2 https://github.com/ankane/pgvector.git
20+
git clone --branch v0.1.3 https://github.com/ankane/pgvector.git
2121
cd pgvector
2222
make
2323
make install # may need sudo
@@ -153,7 +153,7 @@ This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres).
153153
You can also build the image manually
154154

155155
```sh
156-
git clone https://github.com/ankane/pgvector.git
156+
git clone --branch v0.1.3 https://github.com/ankane/pgvector.git
157157
cd pgvector
158158
docker build -t pgvector .
159159
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
2-
\echo Use "ALTER EXTENSION vector UPDATE TO '0.1.2'" to load this file. \quit
2+
\echo Use "ALTER EXTENSION vector UPDATE TO '0.1.3'" to load this file. \quit

vector.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
comment = 'vector data type and ivfflat access method'
2-
default_version = '0.1.2'
2+
default_version = '0.1.3'
33
module_pathname = '$libdir/vector'
44
relocatable = true

0 commit comments

Comments
 (0)