@@ -21,7 +21,7 @@ Compile and install the extension (supports Postgres 12+)
21
21
22
22
``` sh
23
23
cd /tmp
24
- git clone --branch v0.7.3 https://github.com/pgvector/pgvector.git
24
+ git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
25
25
cd pgvector
26
26
make
27
27
make install# may need sudo
@@ -46,7 +46,7 @@ Then use `nmake` to build:
46
46
``` cmd
47
47
set "PGROOT=C:\Program Files\PostgreSQL\16"
48
48
cd %TEMP%
49
- git clone --branch v0.7.3 https://github.com/pgvector/pgvector.git
49
+ git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
50
50
cd pgvector
51
51
nmake /F Makefile.win
52
52
nmake /F Makefile.win install
@@ -1051,7 +1051,7 @@ This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres) (r
1051
1051
You can also build the image manually:
1052
1052
1053
1053
``` sh
1054
- git clone --branch v0.7.3 https://github.com/pgvector/pgvector.git
1054
+ git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
1055
1055
cd pgvector
1056
1056
docker build --pull --build-arg PG_MAJOR=16 -t myuser/pgvector.
1057
1057
```