kou commented on PR #1693:
URL: https://github.com/apache/arrow-adbc/pull/1693#issuecomment-2033162308
Ah, we miss a substitution for major version up:
```diff
diff --git a/ci/linux-packages/debian/control
b/ci/linux-packages/debian/control
index 970933c5..dcdacec6 100644
--- a/ci/linux-packages/debian/control
+++ b/ci/linux-packages/debian/control
@@ -150,7 +150,7 @@ Description: Apache Arrow Database Connectivity (ADBC)
Snowflake driver
This package provides CMake package, pkg-config package and so on.
-Package: libadbc-glib0
+Package: libadbc-glib1
Section: libs
Architecture: any
Multi-Arch: same
diff --git a/dev/release/utils-prepare.sh b/dev/release/utils-prepare.sh
index 8070524d..87681435 100644
--- a/dev/release/utils-prepare.sh
+++ b/dev/release/utils-prepare.sh
@@ -125,6 +125,11 @@ update_versions() {
${target} \
$(echo ${target} | sed -e
"s/${base_major_version}/${next_major_version}/")
done
+ sed -i.bak -E \
+ -e
"s/(libadbc-glib)${base_major_version}/\\1${next_major_version}/g" \
+ debian*/control*
+ rm -f debian*/control*.bak
+ git add debian*/control*
fi
popd
fi
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]