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

Appearance settings

Commit 9d65add

Browse filesBrowse files
committed
update depenencies
1 parent df5bb58 commit 9d65add
Copy full SHA for 9d65add

File tree

Expand file treeCollapse file tree

18 files changed

+876
-296
lines changed
Filter options
Expand file treeCollapse file tree

18 files changed

+876
-296
lines changed

‎.github/workflows/ubuntu-packages-and-docker-image.yml

Copy file name to clipboardExpand all lines: .github/workflows/ubuntu-packages-and-docker-image.yml
+1-1Lines 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.9.4"
7+
default: "2.10.0"
88
jobs:
99
#
1010
# PostgresML extension.

‎README.md

Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ docker run \
8282
-v postgresml_data:/var/lib/postgresql \
8383
-p 5433:5432 \
8484
-p 8000:8000 \
85-
ghcr.io/postgresml/postgresml:2.9.4 \
85+
ghcr.io/postgresml/postgresml:2.10.0 \
8686
sudo -u postgresml psql -d postgresml
8787
```
8888

‎packages/postgresml-dashboard/build.sh

Copy file name to clipboardExpand all lines: packages/postgresml-dashboard/build.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dir="/tmp/postgresml-dashboard"
55
deb_dir="$dir/deb-build"
66
source_dir="$dir/source"
77
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
8-
export PACKAGE_VERSION=${1:-"2.9.4"}
8+
export PACKAGE_VERSION=${1:-"2.10.0"}
99
export GITHUB_STARS=$(curl -s "https://api.github.com/repos/postgresml/postgresml" | grep stargazers_count | cut -d : -f 2 | tr -d " " | tr -d ",")
1010
if [[ $(arch) == "x86_64" ]]; then
1111
export ARCH=amd64

‎packages/postgresml-dashboard/release.sh

Copy file name to clipboardExpand all lines: packages/postgresml-dashboard/release.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
55
package_version="$1"
66

77
if [[ -z "$package_version" ]]; then
8-
echo "Usage: $0 <package version, e.g. 2.9.4>"
8+
echo "Usage: $0 <package version, e.g. 2.10.0>"
99
exit 1
1010
fi
1111

‎packages/postgresml-python/build.sh

Copy file name to clipboardExpand all lines: packages/postgresml-python/build.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
77
deb_dir="/tmp/postgresml-python/deb-build"
88
major=${1:-"14"}
99

10-
export PACKAGE_VERSION=${1:-"2.9.4"}
10+
export PACKAGE_VERSION=${1:-"2.10.0"}
1111
export PYTHON_VERSION=${2:-"3.10"}
1212

1313
if [[ $(arch) == "x86_64" ]]; then

‎packages/postgresml-python/release.sh

Copy file name to clipboardExpand all lines: packages/postgresml-python/release.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fi
1212

1313
if [[ -z "$package_version" ]]; then
1414
echo "postgresml-python package build and release script"
15-
echo "usage: $0 <package version, e.g. 2.9.4>"
15+
echo "usage: $0 <package version, e.g. 2.10.0>"
1616
exit 1
1717
fi
1818

‎packages/postgresml/build.sh

Copy file name to clipboardExpand all lines: packages/postgresml/build.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
55

6-
export PACKAGE_VERSION=${1:-"2.9.4"}
6+
export PACKAGE_VERSION=${1:-"2.10.0"}
77
export PGVERSION=${2:-"14"}
88
export UBUNTU_VERSION=${3:-"24.04"}
99

‎packages/postgresml/release.sh

Copy file name to clipboardExpand all lines: packages/postgresml/release.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package_version="$1"
66

77
if [[ -z "$package_version" ]]; then
88
echo "postgresml package build and release script"
9-
echo "usage: $0 <package version, e.g. 2.9.4>"
9+
echo "usage: $0 <package version, e.g. 2.10.0>"
1010
exit 1
1111
fi
1212

‎packages/postgresql-pgml/release.sh

Copy file name to clipboardExpand all lines: packages/postgresql-pgml/release.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
55

66
if [[ -z "${1}" ]]; then
7-
echo "Usage: $0 <package version, e.g. 2.9.4>"
7+
echo "Usage: $0 <package version, e.g. 2.10.0>"
88
exit 1
99
fi
1010

‎pgml-cms/docs/open-source/pgml/api/pgml.tune.md

Copy file name to clipboardExpand all lines: pgml-cms/docs/open-source/pgml/api/pgml.tune.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Without tuning, DistilBERT classifies every single movie review as `positive`, a
159159

160160
Once our model has been fine tuned on the dataset, it'll be saved and deployed with a Project visible in the Dashboard, just like models built from simpler algorithms.
161161

162-
[![Fine Tuning](https://github.com/postgresml/postgresml/raw/v2.9.4/dashboard/static/images/dashboard/tuning.png)](https://github.com/postgresml/postgresml/blob/v2.9.4/dashboard/static/images/dashboard/tuning.png)
162+
[![Fine Tuning](https://github.com/postgresml/postgresml/raw/v2.10.0/dashboard/static/images/dashboard/tuning.png)](https://github.com/postgresml/postgresml/blob/v2.10.0/dashboard/static/images/dashboard/tuning.png)
163163

164164
#### Prepare the data
165165

‎pgml-cms/docs/open-source/pgml/developers/contributing.md

Copy file name to clipboardExpand all lines: pgml-cms/docs/open-source/pgml/developers/contributing.md
+1-1Lines 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.9.4
130+
2.10.0
131131
(1 row)
132132
```
133133
{% endtab %}

‎pgml-cms/docs/open-source/pgml/developers/installation.md

Copy file name to clipboardExpand all lines: pgml-cms/docs/open-source/pgml/developers/installation.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ CREATE EXTENSION
132132
pgml_test=# SELECT pgml.version();
133133
version
134134
---------
135-
2.9.4
135+
2.10.0
136136
(1 row)
137137
```
138138

‎pgml-cms/docs/open-source/pgml/developers/quick-start-with-docker.md

Copy file name to clipboardExpand all lines: pgml-cms/docs/open-source/pgml/developers/quick-start-with-docker.md
+3-3Lines 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.9.4 \
21+
ghcr.io/postgresml/postgresml:2.10.0 \
2222
sudo -u postgresml psql -d postgresml
2323
```
2424
{% endtab %}
@@ -43,7 +43,7 @@ docker run \
4343
--gpus all \
4444
-p 5433:5432 \
4545
-p 8000:8000 \
46-
ghcr.io/postgresml/postgresml:2.9.4 \
46+
ghcr.io/postgresml/postgresml:2.10.0 \
4747
sudo -u postgresml psql -d postgresml
4848
```
4949

@@ -80,7 +80,7 @@ Time: 41.520 ms
8080
postgresml=# SELECT pgml.version();
8181
version
8282
---------
83-
2.9.4
83+
2.10.0
8484
(1 row)
8585
```
8686

‎pgml-cms/docs/open-source/pgml/developers/self-hosting/pooler.md

Copy file name to clipboardExpand all lines: pgml-cms/docs/open-source/pgml/developers/self-hosting/pooler.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,6 @@ Type "help" for help.
115115
postgresml=> SELECT pgml.version();
116116
version
117117
---------
118-
2.9.4
118+
2.10.0
119119
(1 row)
120120
```

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.