Skip to content

Commit bfc682b

Browse files
authored
2.7.12 (#1107)
1 parent 3403f25 commit bfc682b

File tree

21 files changed

+24
-24
lines changed

21 files changed

+24
-24
lines changed

.github/workflows/ubuntu-packages-and-docker-image.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.10"
7+
default: "2.7.12"
88
jobs:
99
#
1010
# PostgresML extension.

.github/workflows/ubuntu-postgresml-python-package.yaml

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.10"
7+
default: "2.7.12"
88

99
jobs:
1010
postgresml-python:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ docker run \
150150
-v postgresml_data:/var/lib/postgresql \
151151
-p 5433:5432 \
152152
-p 8000:8000 \
153-
ghcr.io/postgresml/postgresml:2.7.4 \
153+
ghcr.io/postgresml/postgresml:2.7.12 \
154154
sudo -u postgresml psql -d postgresml
155155
```
156156

packages/postgresml-dashboard/build.sh

Lines 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.7.4"}
8+
export PACKAGE_VERSION=${1:-"2.7.12"}
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

Lines 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.7.4>"
8+
echo "Usage: $0 <package version, e.g. 2.7.12>"
99
exit 1
1010
fi
1111

packages/postgresml-python/build.sh

Lines 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.7.10"}
10+
export PACKAGE_VERSION=${1:-"2.7.12"}
1111
export PYTHON_VERSION=${2:-"3.10"}
1212

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

packages/postgresml-python/release.sh

Lines 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.7.4>"
15+
echo "usage: $0 <package version, e.g. 2.7.12>"
1616
exit 1
1717
fi
1818

packages/postgresml/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Version: ${PACKAGE_VERSION}
33
Section: database
44
Priority: optional
55
Architecture: all
6-
Depends: postgresml-python (>= 2.7.10), postgresql-pgml-${PGVERSION} (>= ${PACKAGE_VERSION})
6+
Depends: postgresml-python (>= 2.7.12), postgresql-pgml-${PGVERSION} (>= ${PACKAGE_VERSION})
77
Maintainer: PostgresML <team@postgresml.org>
88
Homepage: https://postgresml.org
99
Description: PostgresML - Generative AI and Simple ML inside PostgreSQL

packages/postgresml/build.sh

Lines 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.7.10"}
6+
export PACKAGE_VERSION=${1:-"2.7.12"}
77
export PGVERSION=${2:-"14"}
88

99
deb_dir="/tmp/postgresml/deb-build"

packages/postgresml/release.sh

Lines 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.7.4>"
9+
echo "usage: $0 <package version, e.g. 2.7.12>"
1010
exit 1
1111
fi
1212

0 commit comments

Comments
 (0)