Skip to content

Commit f86baa1

Browse files
authored
Merge pull request #114 from cipherstash/chore/bump-EQL-to-1.0.0
chore: bump EQL to 1.0.0 🚀
2 parents 4302c15 + 355fbc0 commit f86baa1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

mise.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
node = "22.11.0"
33
pnpm = "9.15.3"
44

5+
[env]
6+
CS_EQL_VERSION="eql-1.0.0"
7+
58
[tasks."postgres:eql:download"]
69
alias = 'e'
710
description = "Download latest EQL release"
@@ -14,15 +17,15 @@ mkdir sql
1417
1518
# install script
1619
if [ -z "$CS_EQL_PATH" ]; then
17-
curl -sLo sql/cipherstash-encrypt.sql https://github.com/cipherstash/encrypt-query-language/releases/latest/download/cipherstash-encrypt.sql
20+
curl -sLo sql/cipherstash-encrypt.sql https://github.com/cipherstash/encrypt-query-language/releases/download/${CS_EQL_VERSION}/cipherstash-encrypt.sql
1821
else
1922
echo "Using EQL: ${CS_EQL_PATH}"
2023
cp "$CS_EQL_PATH" sql/cipherstash-encrypt.sql
2124
fi
2225
2326
# uninstall script
2427
if [ -z "$CS_EQL_UNINSTALL_PATH" ]; then
25-
curl -sLo sql/cipherstash-encrypt-uninstall.sql https://github.com/cipherstash/encrypt-query-language/releases/latest/download/cipherstash-encrypt-uninstall.sql
28+
curl -sLo sql/cipherstash-encrypt-uninstall.sql https://github.com/cipherstash/encrypt-query-language/releases/download/${CS_EQL_VERSION}/cipherstash-encrypt-uninstall.sql
2629
else
2730
echo "Using EQL: ${CS_EQL_PATH}"
2831
cp "$CS_EQL_UNINSTALL_PATH" sql/cipherstash-encrypt-uninstall.sql

0 commit comments

Comments
 (0)