Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit103ac50

Browse files
committed
Version bump to 0.7.4 [skip ci]
1 parent57fb706 commit103ac50

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

‎CHANGELOG.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
##0.7.4 (unreleased)
1+
##0.7.4 (2024-08-05)
22

33
- Fixed locking for parallel HNSW index builds
44
- Fixed compilation error with GCC 14 on i386 when SSE2 is not enabled

‎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.3",
5+
"version":"0.7.4",
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.3",
23+
"version":"0.7.4",
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.3
2+
EXTVERSION = 0.7.4
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.3
2+
EXTVERSION = 0.7.4
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Compile and install the extension (supports Postgres 12+)
2121

2222
```sh
2323
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
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.3 https://github.com/pgvector/pgvector.git
49+
git clone --branch v0.7.4 https://github.com/pgvector/pgvector.git
5050
cd pgvector
5151
nmake /F Makefile.win
5252
nmake /F Makefile.win install
@@ -1051,7 +1051,7 @@ This adds pgvector to the [Postgres image](https://hub.docker.com/_/postgres) (r
10511051
You 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
10551055
cd pgvector
10561056
docker build --pull --build-arg PG_MAJOR=16 -t myuser/pgvector.
10571057
```

‎sql/vector--0.7.3--0.7.4.sql‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
2+
\echo Use"ALTER EXTENSION vector UPDATE TO '0.7.4'" 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 and hnsw access methods'
2-
default_version = '0.7.3'
2+
default_version = '0.7.4'
33
module_pathname = '$libdir/vector'
44
relocatable = true

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp