Skip to content

Commit 932c770

Browse files
authored
2.7.4 release with llama2 support (#908)
1 parent 6fb3e38 commit 932c770

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ on:
33
workflow_dispatch:
44
inputs:
55
version:
6-
default: "2.7.3"
6+
default: "2.7.4"
77
postgresmlVersion:
8-
default: "2.7.3-2"
8+
default: "2.7.4-1"
99
jobs:
1010
publish-extension-docker-image:
1111
strategy:

.github/workflows/package-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
inputs:
66
packageVersion:
7-
default: "2.7.3"
7+
default: "2.7.4"
88

99
jobs:
1010
build:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ docker run \
146146
-v postgresml_data:/var/lib/postgresql \
147147
-p 5433:5432 \
148148
-p 8000:8000 \
149-
ghcr.io/postgresml/postgresml:2.7.3 \
149+
ghcr.io/postgresml/postgresml:2.7.4 \
150150
sudo -u postgresml psql -d postgresml
151151
```
152152

pgml-dashboard/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pgml-dashboard/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgml-dashboard"
3-
version = "2.7.3"
3+
version = "2.7.4"
44
edition = "2021"
55
authors = ["PostgresML <team@postgresml.org>"]
66
license = "MIT"

pgml-dashboard/content/docs/guides/setup/developers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ SELECT pgml.version();
127127
postgres=# select pgml.version();
128128
version
129129
-------------------
130-
2.7.3
130+
2.7.4
131131
(1 row)
132132
```
133133

pgml-dashboard/content/docs/guides/setup/quick_start_with_docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker run \
1818
-v postgresml_data:/var/lib/postgresql \
1919
-p 5433:5432 \
2020
-p 8000:8000 \
21-
ghcr.io/postgresml/postgresml:2.7.3 \
21+
ghcr.io/postgresml/postgresml:2.7.4 \
2222
sudo -u postgresml psql -d postgresml
2323
```
2424

@@ -44,7 +44,7 @@ docker run \
4444
--gpus all \
4545
-p 5433:5432 \
4646
-p 8000:8000 \
47-
ghcr.io/postgresml/postgresml:2.7.3 \
47+
ghcr.io/postgresml/postgresml:2.7.4 \
4848
sudo -u postgresml psql -d postgresml
4949
```
5050

@@ -82,7 +82,7 @@ Time: 41.520 ms
8282
postgresml=# SELECT pgml.version();
8383
version
8484
---------
85-
2.7.3
85+
2.7.4
8686
(1 row)
8787
```
8888

pgml-dashboard/content/docs/guides/setup/v2/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ CREATE EXTENSION
134134
pgml_test=# SELECT pgml.version();
135135
version
136136
---------
137-
2.7.3
137+
2.7.4
138138
(1 row)
139139
```
140140

pgml-extension/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pgml-extension/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgml"
3-
version = "2.7.3"
3+
version = "2.7.4"
44
edition = "2021"
55

66
[lib]

0 commit comments

Comments
 (0)