Skip to content

Commit 670bbad

Browse files
committed
configs
1 parent 5153323 commit 670bbad

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ WASM_OUT_DIR := wasm
22
WASM_OUT_NAME := libpg-query
33
WASM_MODULE_NAME := PgQueryModule
44
LIBPG_QUERY_REPO := https://github.com/pganalyze/libpg_query.git
5-
LIBPG_QUERY_TAG := 15-4.2.4
5+
LIBPG_QUERY_TAG := 17-6.1.0
6+
67
CACHE_DIR := .cache
78

89
OS ?= $(shell uname -s)

docker/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ docker run \
1919
# build inside the docker image
2020

2121
```sh
22-
branch=17-latest
22+
branch=17-6.1.0
2323
mkdir git_clone_dir && cd git_clone_dir
2424
git clone -b $branch --single-branch https://github.com/launchql/libpg-query-node
2525
cd libpg-query-node/
@@ -40,7 +40,7 @@ npm publish
4040
to build manually using `libpg_query`
4141

4242
```sh
43-
branch=17-latest
43+
branch=17-6.1.0
4444
mkdir git_clone_dir && cd git_clone_dir
4545
git clone -b $branch --single-branch https://github.com/pganalyze/libpg_query.git
4646
cd libpg_query/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
},
3333
"scripts": {
34-
"protogen": "node ./script/protogen.js 17-latest",
34+
"protogen": "node ./script/protogen.js 17-6.1.0",
3535
"clean": "rimraf build",
3636
"configure": "node-pre-gyp configure",
3737
"install": "node-pre-gyp install --fallback-to-build --loglevel verbose",

script/buildAddon.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22

3-
set commit=d00c096f3180721799a26c74996288c657fc1753
4-
set branch=17-latest
3+
set commit=1c1a32ed2f4c7799830d50bf4cb159222aafec48
4+
set branch=17-6.1.0
55

66
setlocal enabledelayedexpansion
77

script/buildAddon.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env bash
22

33
# Set the desired commit hash and branch
4-
commit=d00c096f3180721799a26c74996288c657fc1753
5-
branch=17-latest
4+
commit=1c1a32ed2f4c7799830d50bf4cb159222aafec48
5+
branch=17-6.1.0
66

77
# Remember current directory and create a new, unique, temporary directory
88
rDIR=$(pwd)

0 commit comments

Comments
 (0)