diff --git a/.github/workflows/extension_ci.yml b/.github/workflows/extension_ci.yml index 1117d559..4cc1c3ad 100644 --- a/.github/workflows/extension_ci.yml +++ b/.github/workflows/extension_ci.yml @@ -112,9 +112,9 @@ jobs: env: TRUNK_API_TOKEN: ${{ secrets.TRUNK_AUTH_TOKEN }} run: | - pgmq_ver=$(stoml Cargo.toml package.version) - pgmq_descr=$(stoml Cargo.toml package.description) - pgmq_repo=$(stoml Cargo.toml package.repository) + pgmq_ver=$(stoml Trunk.toml extension.version) + pgmq_descr=$(stoml Trunk.toml extension.description) + pgmq_repo=$(stoml Trunk.toml extension.repository) trunk publish pgmq --version ${pgmq_ver} --description "A lightweight message queue. Like AWS SQS and RSMQ, on Postgres." --homepage "https://github.com/tembo-io/pgmq" --repository "https://github.com/tembo-io/pgmq" --license "PostgreSQL" --category featured --category orchestration build_and_push: name: Build and push images @@ -145,7 +145,7 @@ jobs: id: versions run: | echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - echo "TAG_VER=$(/usr/local/bin/stoml Cargo.toml package.version)" >> $GITHUB_OUTPUT + echo "TAG_VER=$(grep 'default_version' pgmq.control | cut -d "'" -f 2)" >> $GITHUB_OUTPUT - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/pgmq.control b/pgmq.control index 1e8f2a0f..85ad1972 100644 --- a/pgmq.control +++ b/pgmq.control @@ -1,5 +1,5 @@ comment = 'A lightweight message queue. Like AWS SQS and RSMQ but on Postgres.' -default_version = '1.3.2' +default_version = '1.3.3' module_pathname = '$libdir/pgmq' schema = 'pgmq' relocatable = false diff --git a/sql/pgmq--1.3.1--1.3.2.sql b/sql/pgmq--1.3.1--1.3.2.sql new file mode 100644 index 00000000..e69de29b diff --git a/sql/pgmq--1.3.2--1.3.3.sql b/sql/pgmq--1.3.2--1.3.3.sql new file mode 100644 index 00000000..e69de29b