Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2627c5f

Browse files
committedOct 30, 2024
Version bump to 0.8.0 [skip ci]
1 parent 34b3cfd commit 2627c5f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed
 

‎CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.8.0 (unreleased)
1+
## 0.8.0 (2024-10-30)
22

33
- Added support for iterative index scans
44
- Added casts for arrays to `sparsevec`

‎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.7.4",
5+
"version": "0.8.0",
66
"maintainer": [
77
"Andrew Kane <andrew@ankane.org>"
88
],
@@ -20,7 +20,7 @@
2020
"vector": {
2121
"file": "sql/vector.sql",
2222
"docfile": "README.md",
23-
"version": "0.7.4",
23+
"version": "0.8.0",
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.7.4
2+
EXTVERSION = 0.8.0
33

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

‎Makefile.win

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

44
DATA_built = sql\$(EXTENSION)--$(EXTVERSION).sql
55
OBJS = src\bitutils.obj src\bitvec.obj src\halfutils.obj src\halfvec.obj src\hnsw.obj src\hnswbuild.obj src\hnswinsert.obj src\hnswscan.obj src\hnswutils.obj src\hnswvacuum.obj src\ivfbuild.obj src\ivfflat.obj src\ivfinsert.obj src\ivfkmeans.obj src\ivfscan.obj src\ivfutils.obj src\ivfvacuum.obj src\sparsevec.obj src\vector.obj

‎README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Plus [ACID](https://en.wikipedia.org/wiki/ACID) compliance, point-in-time recove
1717

1818
### Linux and Mac
1919

20-
Compile and install the extension (supports Postgres 12+)
20+
Compile and install the extension (supports Postgres 13+)
2121

2222
```sh
2323
cd /tmp
24-
git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
24+
git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git
2525
cd pgvector
2626
make
2727
make install # may need sudo
@@ -46,7 +46,7 @@ Then use `nmake` to build:
4646
```cmd
4747
set "PGROOT=C:\Program Files\PostgreSQL\16"
4848
cd %TEMP%
49-
git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
49+
git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git
5050
cd pgvector
5151
nmake /F Makefile.win
5252
nmake /F Makefile.win install
@@ -1153,7 +1153,7 @@ This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres) (r
11531153
You can also build the image manually:
11541154

11551155
```sh
1156-
git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
1156+
git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git
11571157
cd pgvector
11581158
docker build --pull --build-arg PG_MAJOR=17 -t myuser/pgvector .
11591159
```

‎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 and hnsw access methods'
2-
default_version = '0.7.4'
2+
default_version = '0.8.0'
33
module_pathname = '$libdir/vector'
44
relocatable = true

0 commit comments

Comments
 (0)
Please sign in to comment.