Skip to content

Commit 9fe371e

Browse files
authored
chore(substrait): bump to v0.52.0 (#60)
Also updated the update script to automatically grab the latest tag from the upstream releases
1 parent e99b921 commit 9fe371e

File tree

8 files changed

+339
-283
lines changed

8 files changed

+339
-283
lines changed

src/substrait/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
except ImportError:
44
pass
55

6-
__substrait_version__ = "0.50.0"
7-
__substrait_hash__ = "7dbbf04"
6+
__substrait_version__ = "0.52.0"
7+
__substrait_hash__ = "a68c1ac"
88
__minimum_substrait_version__ = "0.30.0"

src/substrait/extensions/functions_aggregate_generic.yaml

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/substrait/extensions/functions_string.yaml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/substrait/gen/proto/algebra_pb2.py

Lines changed: 265 additions & 263 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/substrait/gen/proto/algebra_pb2.pyi

Lines changed: 30 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/substrait/gen/proto/type_pb2.pyi

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

update_proto.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
#!/bin/bash
22

3-
if [[ -z "$1" ]]; then
4-
echo "Usage: bash update.sh <version>" 1>&2
5-
echo ""
6-
echo "Example: bash update.sh v0.34.0" 1>&2
7-
exit 1
3+
if ! command -v curl > /dev/null 2>&1; then
4+
echo "curl is required to grab the latest version tag"
85
fi
96

10-
VERSION=$1
7+
VERSION=$(curl -s https://api.github.com/repos/substrait-io/substrait/releases/latest | grep 'tag_name' | cut -d '"' -f 4)
118

129
echo "Updating substrait submodule..."
1310
git submodule update --remote third_party/substrait

0 commit comments

Comments
 (0)