🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
checkpoint
  • Loading branch information
Montana Low authored and montanalow committed Jan 11, 2025
commit 49c24b2ee82b4c8041a6b39e8666def1756441bd
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-packages-and-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
packageVersion:
default: "2.9.3"
default: "2.9.4"
jobs:
#
# PostgresML extension.
Expand Down
2 changes: 1 addition & 1 deletion pgml-cms/docs/open-source/pgml/developers/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ SELECT pgml.version();
postgres=# select pgml.version();
version
-------------------
2.9.3
2.9.4
(1 row)
```
{% endtab %}
Expand Down
2 changes: 1 addition & 1 deletion pgml-cms/docs/open-source/pgml/developers/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ CREATE EXTENSION
pgml_test=# SELECT pgml.version();
version
---------
2.9.3
2.9.4
(1 row)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ docker run \
-v postgresml_data:/var/lib/postgresql \
-p 5433:5432 \
-p 8000:8000 \
ghcr.io/postgresml/postgresml:2.9.3 \
ghcr.io/postgresml/postgresml:2.9.4 \
sudo -u postgresml psql -d postgresml
```
{% endtab %}
Expand All @@ -43,7 +43,7 @@ docker run \
--gpus all \
-p 5433:5432 \
-p 8000:8000 \
ghcr.io/postgresml/postgresml:2.9.3 \
ghcr.io/postgresml/postgresml:2.9.4 \
sudo -u postgresml psql -d postgresml
```

Expand Down Expand Up @@ -80,7 +80,7 @@ Time: 41.520 ms
postgresml=# SELECT pgml.version();
version
---------
2.9.3
2.9.4
(1 row)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ Type "help" for help.
postgresml=> SELECT pgml.version();
version
---------
2.9.3
2.9.4
(1 row)
```
4 changes: 3 additions & 1 deletion pgml-extension/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[build]
# Postgres symbols won't be available until runtime
rustflags = ["-C", "link-args=-Wl,-undefined,dynamic_lookup"]

[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "link-args=-Wl,-undefined,dynamic_lookup,-fuse-ld=lld"]

[target.aarch64-unknown-linux-gnu]
rustflags = ["-C", "link-args=-Wl,-undefined,dynamic_lookup,-fuse-ld=lld"]

[target.aarch64-apple-darwin]
rustflags = ["-C", "link-args=-WL,-undefined,dynamic_lookup"]
4 changes: 2 additions & 2 deletions pgml-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgml"
version = "2.9.3"
version = "2.9.4"
edition = "2021"

[lib]
Expand Down Expand Up @@ -47,7 +47,7 @@ ndarray-stats = "0.5.1"
parking_lot = "0.12"
pgrx = "=0.12.9"
pgrx-pg-sys = "=0.12.9"
pyo3 = { version = "0.20.0", features = ["anyhow", "auto-initialize"], optional = true }
pyo3 = { version = "0.23", features = ["anyhow", "auto-initialize"], optional = true }
rand = "0.8"
rmp-serde = { version = "1.1" }
signal-hook = "0.3"
Expand Down
Empty file.