File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " pgml"
3
- version = " 0.9.2 "
3
+ version = " 0.9.3 "
4
4
edition = " 2021"
5
5
authors = [" PosgresML <team@postgresml.org>" ]
6
6
homepage = " https://postgresml.org/"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pgml" ,
3
- "version" : " 0.9.2 " ,
3
+ "version" : " 0.9.3 " ,
4
4
"description" : " Open Source Alternative for Building End-to-End Vector Search Applications without OpenAI & Pinecone" ,
5
5
"keywords" : [
6
6
" postgres" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "maturin"
5
5
[project ]
6
6
name = " pgml"
7
7
requires-python = " >=3.7"
8
- version = " 0.9.2 "
8
+ version = " 0.9.3 "
9
9
description = " Python SDK is designed to facilitate the development of scalable vector search applications on PostgreSQL databases."
10
10
authors = [
11
11
{name = " PostgresML" , email = " team@postgresml.org" },
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS pgml.collections (
8
8
name text NOT NULL,
9
9
active BOOLEAN DEFAULT TRUE,
10
10
project_id int8 NOT NULL REFERENCES pgml.projects ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
11
- sdk_version text
11
+ sdk_version text,
12
12
UNIQUE (name)
13
13
);
14
14
"# ;
You can’t perform that action at this time.
0 commit comments