This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new a40cf8840 chore: bump to release 13, fix other post-release scripts
(#1876)
a40cf8840 is described below
commit a40cf88408d6cb776cedeaa4d1d0945675c156cc
Author: David Li <[email protected]>
AuthorDate: Wed May 22 10:40:57 2024 +0900
chore: bump to release 13, fix other post-release scripts (#1876)
---
CHANGELOG.md | 94 ++++++++++++++++++++++
c/cmake_modules/AdbcVersion.cmake | 2 +-
ci/conda/meta.yaml | 2 +-
ci/linux-packages/debian/control | 22 ++---
...install => libadbc-driver-flightsql101.install} | 0
...0.install => libadbc-driver-manager101.install} | 0
...nstall => libadbc-driver-postgresql101.install} | 0
...install => libadbc-driver-snowflake101.install} | 0
...00.install => libadbc-driver-sqlite101.install} | 0
csharp/Directory.Build.props | 2 +-
dev/release/post-09-bump-versions.sh | 7 +-
dev/release/utils-prepare.sh | 14 ++--
dev/release/versions.env | 18 +++--
docs/source/conf.py | 2 +-
glib/meson.build | 2 +-
java/core/pom.xml | 2 +-
java/driver-manager/pom.xml | 2 +-
java/driver/flight-sql-validation/pom.xml | 2 +-
java/driver/flight-sql/pom.xml | 2 +-
java/driver/jdbc-validation-derby/pom.xml | 2 +-
java/driver/jdbc-validation-mssqlserver/pom.xml | 2 +-
java/driver/jdbc-validation-postgresql/pom.xml | 2 +-
java/driver/jdbc/pom.xml | 2 +-
java/driver/validation/pom.xml | 2 +-
java/pom.xml | 4 +-
java/sql/pom.xml | 2 +-
.../adbc_driver_flightsql/_static_version.py | 2 +-
.../adbc_driver_manager/_static_version.py | 2 +-
.../adbc_driver_postgresql/_static_version.py | 2 +-
.../adbc_driver_snowflake/_static_version.py | 2 +-
.../adbc_driver_sqlite/_static_version.py | 2 +-
r/adbcdrivermanager/DESCRIPTION | 2 +-
r/adbcflightsql/DESCRIPTION | 2 +-
r/adbcpostgresql/DESCRIPTION | 2 +-
r/adbcsnowflake/DESCRIPTION | 2 +-
r/adbcsqlite/DESCRIPTION | 2 +-
ruby/lib/adbc/version.rb | 2 +-
rust/Cargo.toml | 2 +-
38 files changed, 153 insertions(+), 60 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7ee1ddfcd..660a192bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -511,3 +511,97 @@
- **c/driver_manager**: differentiate errors from driver manager (#1662)
- **c/driver/sqlite**: port to driver base (#1603)
- **go/adbc/driver**: driverbase implementation for connection (#1590)
+
+## ADBC Libraries 12 (2024-05-09)
+
+### Fix
+
+- **csharp/src/Apache.Arrow.Adbc/C**: finalizer threw exception (#1842)
+- **dev/release**: handle versioning scheme in binary verification (#1834)
+- **csharp**: Change option translation to be case-sensitive (#1820)
+- **csharp/src/Apache.Arrow.Adbc/C**: imported errors don't return a native
error or SQL state (#1815)
+- **csharp/src/Apache.Arrow.Adbc**: imported statements and databases don't
allow options to be set (#1816)
+- **csharp/src/Apache.Arrow.Adbc/C**: correctly handle null driver entries for
imported drivers (#1812)
+- **go/adbc/driver/snowflake**: handle empty result sets (#1805)
+- **csharp**: an assortment of small fixes not worth individual pull requests
(#1807)
+- **go/adbc/driver/snowflake**: workaround snowflake metadata-only limitations
(#1790)
+- **csharp/src/Apache.Arrow.Adbc**: correct StandardSchemas.ColumnSchema data
types (#1731)
+- **csharp**: imported drivers have the potential for a lot of memory leaks
(#1776)
+- **go/adbc/driver/flightsql**: should use `ctx.Err().Error()` (#1769)
+- **go/adbc/driver/snowflake**: handle quotes properly (#1738)
+- **go/adbc/driver/snowflake**: comment format (#1768)
+- **csharp/src/Apache.Arrow.Adbc**: Fix marshaling in three functions where it
was broken (#1758)
+- **csharp/src/Apache.Arrow.Adbc**: Add support to the C Exporter for
converting exceptions into AdbcErrors (#1752)
+- **format**: correct duplicated statistics names (#1736)
+- **dev/release**: correct C# version bump regex (#1733)
+- **r**: Ensure CXX_STD is set everywhere (#1706)
+- **csharp**: Resolve memory leaks described by #1690 (#1695)
+
+### Feat
+
+- **go/adbc/driver/snowflake**: support parameter binding (#1808)
+- **csharp**: imported objects should have call "release" when no longer in
use (#1802)
+- **rust**: add the driver exporter (#1756)
+- **csharp**: enable nullable checks and resolve all warnings (#1792)
+- **go/adbc/driver/flightsql**: support stateless prepared statements (#1796)
+- **csharp**: Implement support for transactions, isolation level and
read-only flag (#1784)
+- **csharp/test**: implement DuckDb test fixture (#1781)
+- **csharp**: Implement remaining functions in 1.0 spec (#1773)
+- **csharp/src/Apache.Arrow.Adbc**: Cleanup use of List<T> in APIs and
implementation (#1761)
+- **csharp**: Update to test with net8.0 (#1771)
+- **csharp/src/Apache.Arrow.Adbc**: Remove AdbcConnection.GetInfo(List<int>)
(#1760)
+- **glib**: add GADBCArrowConnection (#1754)
+- **rust**: add complete FFI bindings (#1742)
+- **glib**: Add garrow_connection_get_statistic_names() (#1748)
+- **glib**: Add garrow_connection_get_statistics() (#1744)
+- **c/driver/postgresql**: add money type and test intervals (#1741)
+- **rust**: add public abstract API and dummy driver implementation (#1725)
+- **csharp/src/Drivers**: introduce drivers for Apache systems built on Thrift
(#1710)
+- **format**: add info codes for supported capabilities (#1649)
+
+## apache-arrow-adbc-12-rc3 (2024-05-09)
+
+### Fix
+
+- **csharp/src/Apache.Arrow.Adbc/C**: finalizer threw exception (#1842)
+- **dev/release**: handle versioning scheme in binary verification (#1834)
+- **csharp**: Change option translation to be case-sensitive (#1820)
+- **csharp/src/Apache.Arrow.Adbc/C**: imported errors don't return a native
error or SQL state (#1815)
+- **csharp/src/Apache.Arrow.Adbc**: imported statements and databases don't
allow options to be set (#1816)
+- **csharp/src/Apache.Arrow.Adbc/C**: correctly handle null driver entries for
imported drivers (#1812)
+- **go/adbc/driver/snowflake**: handle empty result sets (#1805)
+- **csharp**: an assortment of small fixes not worth individual pull requests
(#1807)
+- **go/adbc/driver/snowflake**: workaround snowflake metadata-only limitations
(#1790)
+- **csharp/src/Apache.Arrow.Adbc**: correct StandardSchemas.ColumnSchema data
types (#1731)
+- **csharp**: imported drivers have the potential for a lot of memory leaks
(#1776)
+- **go/adbc/driver/flightsql**: should use `ctx.Err().Error()` (#1769)
+- **go/adbc/driver/snowflake**: handle quotes properly (#1738)
+- **go/adbc/driver/snowflake**: comment format (#1768)
+- **csharp/src/Apache.Arrow.Adbc**: Fix marshaling in three functions where it
was broken (#1758)
+- **csharp/src/Apache.Arrow.Adbc**: Add support to the C Exporter for
converting exceptions into AdbcErrors (#1752)
+- **format**: correct duplicated statistics names (#1736)
+- **dev/release**: correct C# version bump regex (#1733)
+- **r**: Ensure CXX_STD is set everywhere (#1706)
+- **csharp**: Resolve memory leaks described by #1690 (#1695)
+
+### Feat
+
+- **go/adbc/driver/snowflake**: support parameter binding (#1808)
+- **csharp**: imported objects should have call "release" when no longer in
use (#1802)
+- **rust**: add the driver exporter (#1756)
+- **csharp**: enable nullable checks and resolve all warnings (#1792)
+- **go/adbc/driver/flightsql**: support stateless prepared statements (#1796)
+- **csharp**: Implement support for transactions, isolation level and
read-only flag (#1784)
+- **csharp/test**: implement DuckDb test fixture (#1781)
+- **csharp**: Implement remaining functions in 1.0 spec (#1773)
+- **csharp/src/Apache.Arrow.Adbc**: Cleanup use of List<T> in APIs and
implementation (#1761)
+- **csharp**: Update to test with net8.0 (#1771)
+- **csharp/src/Apache.Arrow.Adbc**: Remove AdbcConnection.GetInfo(List<int>)
(#1760)
+- **glib**: add GADBCArrowConnection (#1754)
+- **rust**: add complete FFI bindings (#1742)
+- **glib**: Add garrow_connection_get_statistic_names() (#1748)
+- **glib**: Add garrow_connection_get_statistics() (#1744)
+- **c/driver/postgresql**: add money type and test intervals (#1741)
+- **rust**: add public abstract API and dummy driver implementation (#1725)
+- **csharp/src/Drivers**: introduce drivers for Apache systems built on Thrift
(#1710)
+- **format**: add info codes for supported capabilities (#1649)
diff --git a/c/cmake_modules/AdbcVersion.cmake
b/c/cmake_modules/AdbcVersion.cmake
index c27100ddd..68e8cc830 100644
--- a/c/cmake_modules/AdbcVersion.cmake
+++ b/c/cmake_modules/AdbcVersion.cmake
@@ -21,7 +21,7 @@
# ------------------------------------------------------------
# Version definitions
-set(ADBC_VERSION "1.0.0-SNAPSHOT")
+set(ADBC_VERSION "1.1.0-SNAPSHOT")
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ADBC_BASE_VERSION
"${ADBC_VERSION}")
string(REPLACE "." ";" _adbc_version_list "${ADBC_BASE_VERSION}")
list(GET _adbc_version_list 0 ADBC_VERSION_MAJOR)
diff --git a/ci/conda/meta.yaml b/ci/conda/meta.yaml
index d2091d65f..a2ae0fcee 100644
--- a/ci/conda/meta.yaml
+++ b/ci/conda/meta.yaml
@@ -18,7 +18,7 @@
package:
name: arrow-adbc-split
# TODO: this needs to get bumped by the release process
- version: 1.0.0
+ version: 1.1.0
source:
path: ../../
diff --git a/ci/linux-packages/debian/control b/ci/linux-packages/debian/control
index 83fe2fdcc..e93255dfc 100644
--- a/ci/linux-packages/debian/control
+++ b/ci/linux-packages/debian/control
@@ -34,7 +34,7 @@ Build-Depends:
Standards-Version: 4.5.0
Homepage: https://arrow.apache.org/adbc/
-Package: libadbc-driver-manager100
+Package: libadbc-driver-manager101
Section: libs
Architecture: any
Multi-Arch: same
@@ -52,12 +52,12 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
- libadbc-driver-manager100 (= ${binary:Version})
+ libadbc-driver-manager101 (= ${binary:Version})
Description: Apache Arrow Database Connectivity (ADBC) driver manager
.
This package provides C++ header files.
-Package: libadbc-driver-postgresql100
+Package: libadbc-driver-postgresql101
Section: libs
Architecture: any
Multi-Arch: same
@@ -75,12 +75,12 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
- libadbc-driver-postgresql100 (= ${binary:Version})
+ libadbc-driver-postgresql101 (= ${binary:Version})
Description: Apache Arrow Database Connectivity (ADBC) PostgreSQL driver
.
This package provides CMake package, pkg-config package and so on.
-Package: libadbc-driver-sqlite100
+Package: libadbc-driver-sqlite101
Section: libs
Architecture: any
Multi-Arch: same
@@ -98,12 +98,12 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
- libadbc-driver-sqlite100 (= ${binary:Version})
+ libadbc-driver-sqlite101 (= ${binary:Version})
Description: Apache Arrow Database Connectivity (ADBC) SQLite driver
.
This package provides CMake package, pkg-config package and so on.
-Package: libadbc-driver-flightsql100
+Package: libadbc-driver-flightsql101
Section: libs
Architecture: any
Multi-Arch: same
@@ -121,12 +121,12 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
- libadbc-driver-flightsql100 (= ${binary:Version})
+ libadbc-driver-flightsql101 (= ${binary:Version})
Description: Apache Arrow Database Connectivity (ADBC) Flight SQL driver
.
This package provides CMake package, pkg-config package and so on.
-Package: libadbc-driver-snowflake100
+Package: libadbc-driver-snowflake101
Section: libs
Architecture: any
Multi-Arch: same
@@ -144,7 +144,7 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
- libadbc-driver-snowflake100 (= ${binary:Version})
+ libadbc-driver-snowflake101 (= ${binary:Version})
Description: Apache Arrow Database Connectivity (ADBC) Snowflake driver
.
This package provides CMake package, pkg-config package and so on.
@@ -158,7 +158,7 @@ Pre-Depends: ${misc:Pre-Depends}
Depends:
${misc:Depends},
${shlibs:Depends},
- libadbc-driver-manager100 (= ${binary:Version})
+ libadbc-driver-manager101 (= ${binary:Version})
Description: Apache Arrow Database Connectivity (ADBC) driver manager
.
This package provides GLib based library files.
diff --git a/ci/linux-packages/debian/libadbc-driver-flightsql100.install
b/ci/linux-packages/debian/libadbc-driver-flightsql101.install
similarity index 100%
rename from ci/linux-packages/debian/libadbc-driver-flightsql100.install
rename to ci/linux-packages/debian/libadbc-driver-flightsql101.install
diff --git a/ci/linux-packages/debian/libadbc-driver-manager100.install
b/ci/linux-packages/debian/libadbc-driver-manager101.install
similarity index 100%
rename from ci/linux-packages/debian/libadbc-driver-manager100.install
rename to ci/linux-packages/debian/libadbc-driver-manager101.install
diff --git a/ci/linux-packages/debian/libadbc-driver-postgresql100.install
b/ci/linux-packages/debian/libadbc-driver-postgresql101.install
similarity index 100%
rename from ci/linux-packages/debian/libadbc-driver-postgresql100.install
rename to ci/linux-packages/debian/libadbc-driver-postgresql101.install
diff --git a/ci/linux-packages/debian/libadbc-driver-snowflake100.install
b/ci/linux-packages/debian/libadbc-driver-snowflake101.install
similarity index 100%
rename from ci/linux-packages/debian/libadbc-driver-snowflake100.install
rename to ci/linux-packages/debian/libadbc-driver-snowflake101.install
diff --git a/ci/linux-packages/debian/libadbc-driver-sqlite100.install
b/ci/linux-packages/debian/libadbc-driver-sqlite101.install
similarity index 100%
rename from ci/linux-packages/debian/libadbc-driver-sqlite100.install
rename to ci/linux-packages/debian/libadbc-driver-sqlite101.install
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index d84622da6..1efc8e90b 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -29,7 +29,7 @@
<Product>Apache Arrow ADBC library</Product>
<Copyright>Copyright 2022-2024 The Apache Software Foundation</Copyright>
<Company>The Apache Software Foundation</Company>
- <Version>1.0.0</Version>
+ <Version>0.13.0</Version>
</PropertyGroup>
<PropertyGroup>
diff --git a/dev/release/post-09-bump-versions.sh
b/dev/release/post-09-bump-versions.sh
index 8eecaa3b6..d87dcab43 100755
--- a/dev/release/post-09-bump-versions.sh
+++ b/dev/release/post-09-bump-versions.sh
@@ -48,10 +48,6 @@ main() {
########################## Update Snapshot Version
##########################
- git fetch --all --prune --tags --force -j$(nproc)
- git switch main
- git rebase apache/main
-
echo "Updating versions for ${RELEASE}-SNAPSHOT"
update_versions "snapshot"
git commit -m "chore: update versions for ${RELEASE}-SNAPSHOT"
@@ -64,8 +60,7 @@ main() {
echo "Updated changelog on branch."
echo "Review the commits just made."
- echo "Then, push changes to apache/arrow-adbc:main with:"
- echo git push apache main
+ echo "Then, create a new pull request."
}
main "$@"
diff --git a/dev/release/utils-prepare.sh b/dev/release/utils-prepare.sh
index 54b644142..52639cb04 100644
--- a/dev/release/utils-prepare.sh
+++ b/dev/release/utils-prepare.sh
@@ -40,7 +40,7 @@ update_versions() {
local glib_version="${VERSION_NATIVE}-SNAPSHOT"
local java_version="${VERSION_JAVA}-SNAPSHOT"
local py_version="${VERSION_NATIVE}dev"
- local r_version="${VERSION_R}.9000"
+ local r_version="${PREVIOUS_VERSION_R}.9000"
;;
*)
echo "Unknown type: ${type}"
@@ -118,12 +118,12 @@ update_versions() {
else
so_version() {
local -r version=$1
- local -r major_version=$(echo $c_version | sed -E -e
's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/')
- local -r minor_version=$(echo $c_version | sed -E -e
's/^[0-9]+\.([0-9]+)\.[0-9]+$/\1/')
+ local -r major_version=$(echo $version | sed -E -e
's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/')
+ local -r minor_version=$(echo $version | sed -E -e
's/^[0-9]+\.([0-9]+)\.[0-9]+$/\1/')
printf "%0d%02d" ${major_version} ${minor_version}
}
- local -r deb_lib_suffix=$(so_version ${base_version})
- local -r next_deb_lib_suffix=$(so_version ${next_version})
+ local -r deb_lib_suffix=$(so_version ${PREVIOUS_VERSION_NATIVE})
+ local -r next_deb_lib_suffix=$(so_version ${VERSION_NATIVE})
pushd "${ADBC_DIR}/ci/linux-packages"
if [ "${deb_lib_suffix}" != "${next_deb_lib_suffix}" ]; then
for target in debian*/lib*${deb_lib_suffix}.install; do
@@ -137,8 +137,8 @@ update_versions() {
rm -f debian*/control*.bak
git add debian*/control*
fi
- local -r base_major_version=$(echo ${base_version} | sed -E -e
's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/')
- local -r next_major_version=$(echo ${next_version} | sed -E -e
's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/')
+ local -r base_major_version=$(echo ${PREVIOUS_VERSION_NATIVE} | sed -E -e
's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/')
+ local -r next_major_version=$(echo ${VERSION_NATIVE} | sed -E -e
's/^([0-9]+)\.[0-9]+\.[0-9]+$/\1/')
if [ "${base_major_version}" != "${next_major_version}" ]; then
for target in debian*/libadbc-*glib${base_major_version}.install; do
git mv \
diff --git a/dev/release/versions.env b/dev/release/versions.env
index fd90ee917..cbc6998e3 100644
--- a/dev/release/versions.env
+++ b/dev/release/versions.env
@@ -17,14 +17,18 @@
# The release as a whole has a counter-based identifier (as in, 12 is the
# 12th release of ADBC). This is used to identify tags, branches, and so on.
-RELEASE="12"
-PREVIOUS_RELEASE="0.11.0"
+RELEASE="13"
+PREVIOUS_RELEASE="12"
# Individual components will have a SemVer.
-VERSION_CSHARP="0.12.0"
-VERSION_JAVA="0.12.0"
+VERSION_CSHARP="0.13.0"
+VERSION_JAVA="0.13.0"
# Because C++/GLib/Go/Python/Ruby are effectively tied at the hip, they share
# a single version number. Also covers Conda/Linux packages.
-VERSION_NATIVE="1.0.0"
-VERSION_R="0.12.0"
-VERSION_RUST="0.12.0"
+VERSION_NATIVE="1.1.0"
+VERSION_R="0.13.0"
+VERSION_RUST="0.13.0"
+
+# Required by the version bump script
+PREVIOUS_VERSION_NATIVE="1.0.0"
+PREVIOUS_VERSION_R="0.12.0"
diff --git a/docs/source/conf.py b/docs/source/conf.py
index f44273f5d..0b0974f83 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -30,7 +30,7 @@ Apache, the Apache feather logo, and the Apache Arrow project
logo are either
registered trademarks or trademarks of The Apache Software Foundation in the
United States and other countries."""
author = "the Apache Arrow Developers"
-release = "1.0.0 (dev)"
+release = "13 (dev)"
# Needed to generate version switcher
version = release
diff --git a/glib/meson.build b/glib/meson.build
index de1891441..fb32ecf97 100644
--- a/glib/meson.build
+++ b/glib/meson.build
@@ -23,7 +23,7 @@ project('adbc-glib',
'c_std=c99',
],
license: 'Apache-2.0',
- version: '1.0.0-SNAPSHOT')
+ version: '1.1.0-SNAPSHOT')
version_numbers = meson.project_version().split('-')[0].split('.')
version_major = version_numbers[0].to_int()
diff --git a/java/core/pom.xml b/java/core/pom.xml
index f53f148f6..45a142443 100644
--- a/java/core/pom.xml
+++ b/java/core/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
</parent>
<artifactId>adbc-core</artifactId>
diff --git a/java/driver-manager/pom.xml b/java/driver-manager/pom.xml
index f5d628339..c0b837f5a 100644
--- a/java/driver-manager/pom.xml
+++ b/java/driver-manager/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
</parent>
<artifactId>adbc-driver-manager</artifactId>
diff --git a/java/driver/flight-sql-validation/pom.xml
b/java/driver/flight-sql-validation/pom.xml
index 419e89fc1..928624156 100644
--- a/java/driver/flight-sql-validation/pom.xml
+++ b/java/driver/flight-sql-validation/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/driver/flight-sql/pom.xml b/java/driver/flight-sql/pom.xml
index c9422c156..f196a46bf 100644
--- a/java/driver/flight-sql/pom.xml
+++ b/java/driver/flight-sql/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/driver/jdbc-validation-derby/pom.xml
b/java/driver/jdbc-validation-derby/pom.xml
index 3c7ef8ba6..8d423a0cf 100644
--- a/java/driver/jdbc-validation-derby/pom.xml
+++ b/java/driver/jdbc-validation-derby/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/driver/jdbc-validation-mssqlserver/pom.xml
b/java/driver/jdbc-validation-mssqlserver/pom.xml
index f5c85705b..9944d98cd 100644
--- a/java/driver/jdbc-validation-mssqlserver/pom.xml
+++ b/java/driver/jdbc-validation-mssqlserver/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/driver/jdbc-validation-postgresql/pom.xml
b/java/driver/jdbc-validation-postgresql/pom.xml
index b892a1b37..8af7d1e9f 100644
--- a/java/driver/jdbc-validation-postgresql/pom.xml
+++ b/java/driver/jdbc-validation-postgresql/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/driver/jdbc/pom.xml b/java/driver/jdbc/pom.xml
index e67f24eb5..03d6a2ac5 100644
--- a/java/driver/jdbc/pom.xml
+++ b/java/driver/jdbc/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/driver/validation/pom.xml b/java/driver/validation/pom.xml
index f11546513..80532f825 100644
--- a/java/driver/validation/pom.xml
+++ b/java/driver/validation/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
diff --git a/java/pom.xml b/java/pom.xml
index 6f08b5142..6183d584f 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -20,7 +20,7 @@
<groupId>org.apache.arrow.adbc</groupId>
<artifactId>arrow-adbc-java-root</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Arrow ADBC Java Root POM</name>
@@ -29,7 +29,7 @@
<properties>
<dep.arrow.version>15.0.0</dep.arrow.version>
- <adbc.version>1.0.0-SNAPSHOT</adbc.version>
+ <adbc.version>0.13.0-SNAPSHOT</adbc.version>
</properties>
<scm>
diff --git a/java/sql/pom.xml b/java/sql/pom.xml
index 4557fddbd..21ca2cb94 100644
--- a/java/sql/pom.xml
+++ b/java/sql/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>arrow-adbc-java-root</artifactId>
<groupId>org.apache.arrow.adbc</groupId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>0.13.0-SNAPSHOT</version>
</parent>
<artifactId>adbc-sql</artifactId>
diff --git
a/python/adbc_driver_flightsql/adbc_driver_flightsql/_static_version.py
b/python/adbc_driver_flightsql/adbc_driver_flightsql/_static_version.py
index 78457f4bd..761a6ab83 100644
--- a/python/adbc_driver_flightsql/adbc_driver_flightsql/_static_version.py
+++ b/python/adbc_driver_flightsql/adbc_driver_flightsql/_static_version.py
@@ -20,7 +20,7 @@
# This file is part of 'miniver': https://github.com/jbweston/miniver
-version = "1.0.0dev"
+version = "1.1.0dev"
# These values are only set if the distribution was created with 'git archive'
# NOTE: must add an export-subst to .gitattributes!
diff --git a/python/adbc_driver_manager/adbc_driver_manager/_static_version.py
b/python/adbc_driver_manager/adbc_driver_manager/_static_version.py
index 78457f4bd..761a6ab83 100644
--- a/python/adbc_driver_manager/adbc_driver_manager/_static_version.py
+++ b/python/adbc_driver_manager/adbc_driver_manager/_static_version.py
@@ -20,7 +20,7 @@
# This file is part of 'miniver': https://github.com/jbweston/miniver
-version = "1.0.0dev"
+version = "1.1.0dev"
# These values are only set if the distribution was created with 'git archive'
# NOTE: must add an export-subst to .gitattributes!
diff --git
a/python/adbc_driver_postgresql/adbc_driver_postgresql/_static_version.py
b/python/adbc_driver_postgresql/adbc_driver_postgresql/_static_version.py
index 78457f4bd..761a6ab83 100644
--- a/python/adbc_driver_postgresql/adbc_driver_postgresql/_static_version.py
+++ b/python/adbc_driver_postgresql/adbc_driver_postgresql/_static_version.py
@@ -20,7 +20,7 @@
# This file is part of 'miniver': https://github.com/jbweston/miniver
-version = "1.0.0dev"
+version = "1.1.0dev"
# These values are only set if the distribution was created with 'git archive'
# NOTE: must add an export-subst to .gitattributes!
diff --git
a/python/adbc_driver_snowflake/adbc_driver_snowflake/_static_version.py
b/python/adbc_driver_snowflake/adbc_driver_snowflake/_static_version.py
index 78457f4bd..761a6ab83 100644
--- a/python/adbc_driver_snowflake/adbc_driver_snowflake/_static_version.py
+++ b/python/adbc_driver_snowflake/adbc_driver_snowflake/_static_version.py
@@ -20,7 +20,7 @@
# This file is part of 'miniver': https://github.com/jbweston/miniver
-version = "1.0.0dev"
+version = "1.1.0dev"
# These values are only set if the distribution was created with 'git archive'
# NOTE: must add an export-subst to .gitattributes!
diff --git a/python/adbc_driver_sqlite/adbc_driver_sqlite/_static_version.py
b/python/adbc_driver_sqlite/adbc_driver_sqlite/_static_version.py
index 78457f4bd..761a6ab83 100644
--- a/python/adbc_driver_sqlite/adbc_driver_sqlite/_static_version.py
+++ b/python/adbc_driver_sqlite/adbc_driver_sqlite/_static_version.py
@@ -20,7 +20,7 @@
# This file is part of 'miniver': https://github.com/jbweston/miniver
-version = "1.0.0dev"
+version = "1.1.0dev"
# These values are only set if the distribution was created with 'git archive'
# NOTE: must add an export-subst to .gitattributes!
diff --git a/r/adbcdrivermanager/DESCRIPTION b/r/adbcdrivermanager/DESCRIPTION
index 177890487..cbd53577a 100644
--- a/r/adbcdrivermanager/DESCRIPTION
+++ b/r/adbcdrivermanager/DESCRIPTION
@@ -1,6 +1,6 @@
Package: adbcdrivermanager
Title: 'Arrow' Database Connectivity ('ADBC') Driver Manager
-Version: 0.11.0.9000
+Version: 0.12.0.9000
Authors@R: c(
person("Dewey", "Dunnington", , "[email protected]", role = c("aut",
"cre"),
comment = c(ORCID = "0000-0002-9415-4582")),
diff --git a/r/adbcflightsql/DESCRIPTION b/r/adbcflightsql/DESCRIPTION
index 07be712db..cdd7f7612 100644
--- a/r/adbcflightsql/DESCRIPTION
+++ b/r/adbcflightsql/DESCRIPTION
@@ -1,6 +1,6 @@
Package: adbcflightsql
Title: 'Arrow' Database Connectivity ('ADBC') 'FlightSQL' Driver
-Version: 0.11.0.9000
+Version: 0.12.0.9000
Authors@R: c(
person("Dewey", "Dunnington", , "[email protected]", role = c("aut",
"cre"),
comment = c(ORCID = "0000-0002-9415-4582")),
diff --git a/r/adbcpostgresql/DESCRIPTION b/r/adbcpostgresql/DESCRIPTION
index 4c97705a2..1fdb8e887 100644
--- a/r/adbcpostgresql/DESCRIPTION
+++ b/r/adbcpostgresql/DESCRIPTION
@@ -1,6 +1,6 @@
Package: adbcpostgresql
Title: 'Arrow' Database Connectivity ('ADBC') 'PostgreSQL' Driver
-Version: 0.11.0.9000
+Version: 0.12.0.9000
Authors@R: c(
person("Dewey", "Dunnington", , "[email protected]", role = c("aut",
"cre"),
comment = c(ORCID = "0000-0002-9415-4582")),
diff --git a/r/adbcsnowflake/DESCRIPTION b/r/adbcsnowflake/DESCRIPTION
index 5e75cc2e5..6af80f0ad 100644
--- a/r/adbcsnowflake/DESCRIPTION
+++ b/r/adbcsnowflake/DESCRIPTION
@@ -1,6 +1,6 @@
Package: adbcsnowflake
Title: Arrow Database Connectivity ('ADBC') 'Snowflake' Driver
-Version: 0.11.0.9000
+Version: 0.12.0.9000
Authors@R: c(
person("Dewey", "Dunnington", , "[email protected]", role = c("aut",
"cre"),
comment = c(ORCID = "0000-0002-9415-4582")),
diff --git a/r/adbcsqlite/DESCRIPTION b/r/adbcsqlite/DESCRIPTION
index 7b66a77ad..ce06e323e 100644
--- a/r/adbcsqlite/DESCRIPTION
+++ b/r/adbcsqlite/DESCRIPTION
@@ -1,6 +1,6 @@
Package: adbcsqlite
Title: 'Arrow' Database Connectivity ('ADBC') 'SQLite' Driver
-Version: 0.11.0.9000
+Version: 0.12.0.9000
Authors@R: c(
person("Dewey", "Dunnington", , "[email protected]", role = c("aut",
"cre"),
comment = c(ORCID = "0000-0002-9415-4582")),
diff --git a/ruby/lib/adbc/version.rb b/ruby/lib/adbc/version.rb
index 4d602b4e4..6fe2e9bce 100644
--- a/ruby/lib/adbc/version.rb
+++ b/ruby/lib/adbc/version.rb
@@ -16,7 +16,7 @@
# under the License.
module ADBC
- VERSION = "1.0.0-SNAPSHOT"
+ VERSION = "1.1.0-SNAPSHOT"
module Version
MAJOR, MINOR, MICRO, TAG = VERSION.split(".").collect(&:to_i)
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 0961ba968..ae2f4212b 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -20,7 +20,7 @@ members = ["core", "drivers/*"]
resolver = "2"
[workspace.package]
-version = "0.1.0"
+version = "0.13.0"
description = "Rust implementation of Arrow Database Connectivity (ADBC)"
edition = "2021"
authors = ["Apache Arrow <[email protected]>"]