@@ -21,7 +21,7 @@ Compile and install the extension (supports Postgres 12+)
2121
2222``` sh
2323cd /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
2525cd pgvector
2626make
2727make install# may need sudo
@@ -46,7 +46,7 @@ Then use `nmake` to build:
4646``` cmd
4747set "PGROOT=C:\Program Files\PostgreSQL\16"
4848cd %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
5050cd pgvector
5151nmake /F Makefile.win
5252nmake /F Makefile.win install
@@ -1051,7 +1051,7 @@ This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres) (r
10511051You can also build the image manually:
10521052
10531053``` 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
10551055cd pgvector
10561056docker build --pull --build-arg PG_MAJOR=16 -t myuser/pgvector.
10571057```