Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ on:
workflow_dispatch:
inputs:
version:
default: "2.7.3"
default: "2.7.4"
postgresmlVersion:
default: "2.7.3-2"
default: "2.7.4-1"
jobs:
publish-extension-docker-image:
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
packageVersion:
default: "2.7.3"
default: "2.7.4"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ docker run \
-v postgresml_data:/var/lib/postgresql \
-p 5433:5432 \
-p 8000:8000 \
ghcr.io/postgresml/postgresml:2.7.3 \
ghcr.io/postgresml/postgresml:2.7.4 \
sudo -u postgresml psql -d postgresml
```

Expand Down
2 changes: 1 addition & 1 deletion pgml-dashboard/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pgml-dashboard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgml-dashboard"
version = "2.7.3"
version = "2.7.4"
edition = "2021"
authors = ["PostgresML <team@postgresml.org>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pgml-dashboard/content/docs/guides/setup/developers.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.7.3
2.7.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.7.3 \
ghcr.io/postgresml/postgresml:2.7.4 \
sudo -u postgresml psql -d postgresml
```

Expand All @@ -44,7 +44,7 @@ docker run \
--gpus all \
-p 5433:5432 \
-p 8000:8000 \
ghcr.io/postgresml/postgresml:2.7.3 \
ghcr.io/postgresml/postgresml:2.7.4 \
sudo -u postgresml psql -d postgresml
```

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ CREATE EXTENSION
pgml_test=# SELECT pgml.version();
version
---------
2.7.3
2.7.4
(1 row)
```

Expand Down
2 changes: 1 addition & 1 deletion pgml-extension/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pgml-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgml"
version = "2.7.3"
version = "2.7.4"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion pgml-extension/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
LABEL maintainer="team@postgresml.com"

ARG DEBIAN_FRONTEND=noninteractive
ARG PGML_VERSION=2.7.3
ARG PGML_VERSION=2.7.4
ENV TZ=Etc/UTC
ENV PATH="/usr/local/cuda/bin:${PATH}"

Expand Down
2 changes: 1 addition & 1 deletion pgml-extension/docker/postgresml/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
ENV PATH="/usr/local/cuda/bin:${PATH}"
ARG POSTGRESML_VERSION=2.7.3-2
ARG POSTGRESML_VERSION=2.7.4-1
RUN apt update && \
apt install -y \
lsb-release \
Expand Down