Skip to content

Commit 94fdc4e

Browse files
authored
chore: update versions for 18-SNAPSHOT (#2583)
1 parent cdcc0d9 commit 94fdc4e

File tree

39 files changed

+89
-52
lines changed

39 files changed

+89
-52
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,3 +802,40 @@
802802
- add related work (#2333)
803803
- change Flight SQL driver usage to executable example (#2395)
804804
- remove crosslinking to Arrow Javadocs (#2455)
805+
806+
## ADBC Libraries 17 (2025-03-03)
807+
808+
### Versions
809+
810+
- C/C++/GLib/Go/Python/Ruby: 1.5.0
811+
- C#: 0.17.0
812+
- Java: 0.17.0
813+
- R: 0.17.0
814+
- Rust: 0.17.0
815+
816+
### New Features
817+
818+
- **c/driver**: add support for CMake packages of Go based drivers (#2561)
819+
- **ci/linux-packages/apt**: add support for Ubuntu 24.04 packages (#2482)
820+
- **csharp/src/Apache.Arrow.Adbc**: improved performance of ValueAt helper and AdbcDataReader (#2534)
821+
- **csharp/src/Drivers/Apache**: Add support for Impala ADBC Driver with Refactoring and Unit Tests (#2365)
822+
- **csharp/src/Drivers/BigQuery**: add support for net472 (#2527)
823+
- **csharp/src/Drivers/BigQuery**: use a default project ID if one is not specified (#2471)
824+
- **go/adbc/driver/flightsql**: allow passing arbitrary grpc dial options in NewDatabase (#2563)
825+
- **go/adbc/driver/snowflake**: add query tag option (#2484)
826+
- **go/adbc/driver/snowflake**: implement WithTransporter driver option (#2558)
827+
828+
### Bugfixes
829+
830+
- **c/driver/sqlite**: don't rely on double-quoted strings feature (#2555)
831+
- **go/adbc/driver/flightsql**: Parsing column metadata in FlightSQL driver (#2481)
832+
- **go/adbc/driver/snowflake**: fix GetObjects for VECTOR cols (#2564)
833+
- **go/adbc/driver/snowflake**: use one session for connection (#2494)
834+
835+
### Documentation Improvements
836+
837+
- add SQLite cookbook example for batch size/inference (#2523)
838+
- add stdout/stderr and index support to recipe directive (#2495)
839+
- crosslink to Arrow Javadocs again (#2483)
840+
- fix references to root CONTRIBUTING.md file (#2521)
841+
- update java quickstart to use the PARAM_URI instead of the legacy PARAM_URL (#2530)

c/cmake_modules/AdbcVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ------------------------------------------------------------
2222
# Version definitions
2323

24-
set(ADBC_VERSION "1.5.0-SNAPSHOT")
24+
set(ADBC_VERSION "1.6.0-SNAPSHOT")
2525
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ADBC_BASE_VERSION "${ADBC_VERSION}")
2626
string(REPLACE "." ";" _adbc_version_list "${ADBC_BASE_VERSION}")
2727
list(GET _adbc_version_list 0 ADBC_VERSION_MAJOR)

c/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
project(
1919
'arrow-adbc',
2020
'c', 'cpp',
21-
version: '1.5.0-SNAPSHOT',
21+
version: '1.6.0-SNAPSHOT',
2222
license: 'Apache-2.0',
2323
meson_version: '>=1.3.0',
2424
default_options: [

ci/conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package:
1919
name: arrow-adbc-split
20-
version: 1.5.0
20+
version: 1.6.0
2121

2222
source:
2323
path: ../../

ci/linux-packages/debian/control

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Build-Depends:
3434
Standards-Version: 4.5.0
3535
Homepage: https://arrow.apache.org/adbc/
3636

37-
Package: libadbc-driver-manager105
37+
Package: libadbc-driver-manager106
3838
Section: libs
3939
Architecture: any
4040
Multi-Arch: same
@@ -52,12 +52,12 @@ Architecture: any
5252
Multi-Arch: same
5353
Depends:
5454
${misc:Depends},
55-
libadbc-driver-manager105 (= ${binary:Version})
55+
libadbc-driver-manager106 (= ${binary:Version})
5656
Description: Apache Arrow Database Connectivity (ADBC) driver manager
5757
.
5858
This package provides C++ header files.
5959

60-
Package: libadbc-driver-postgresql105
60+
Package: libadbc-driver-postgresql106
6161
Section: libs
6262
Architecture: any
6363
Multi-Arch: same
@@ -75,12 +75,12 @@ Architecture: any
7575
Multi-Arch: same
7676
Depends:
7777
${misc:Depends},
78-
libadbc-driver-postgresql105 (= ${binary:Version})
78+
libadbc-driver-postgresql106 (= ${binary:Version})
7979
Description: Apache Arrow Database Connectivity (ADBC) PostgreSQL driver
8080
.
8181
This package provides CMake package, pkg-config package and so on.
8282

83-
Package: libadbc-driver-sqlite105
83+
Package: libadbc-driver-sqlite106
8484
Section: libs
8585
Architecture: any
8686
Multi-Arch: same
@@ -98,12 +98,12 @@ Architecture: any
9898
Multi-Arch: same
9999
Depends:
100100
${misc:Depends},
101-
libadbc-driver-sqlite105 (= ${binary:Version})
101+
libadbc-driver-sqlite106 (= ${binary:Version})
102102
Description: Apache Arrow Database Connectivity (ADBC) SQLite driver
103103
.
104104
This package provides CMake package, pkg-config package and so on.
105105

106-
Package: libadbc-driver-flightsql105
106+
Package: libadbc-driver-flightsql106
107107
Section: libs
108108
Architecture: any
109109
Multi-Arch: same
@@ -121,12 +121,12 @@ Architecture: any
121121
Multi-Arch: same
122122
Depends:
123123
${misc:Depends},
124-
libadbc-driver-flightsql105 (= ${binary:Version})
124+
libadbc-driver-flightsql106 (= ${binary:Version})
125125
Description: Apache Arrow Database Connectivity (ADBC) Flight SQL driver
126126
.
127127
This package provides CMake package, pkg-config package and so on.
128128

129-
Package: libadbc-driver-snowflake105
129+
Package: libadbc-driver-snowflake106
130130
Section: libs
131131
Architecture: any
132132
Multi-Arch: same
@@ -144,7 +144,7 @@ Architecture: any
144144
Multi-Arch: same
145145
Depends:
146146
${misc:Depends},
147-
libadbc-driver-snowflake105 (= ${binary:Version})
147+
libadbc-driver-snowflake106 (= ${binary:Version})
148148
Description: Apache Arrow Database Connectivity (ADBC) Snowflake driver
149149
.
150150
This package provides CMake package, pkg-config package and so on.
@@ -158,7 +158,7 @@ Pre-Depends: ${misc:Pre-Depends}
158158
Depends:
159159
${misc:Depends},
160160
${shlibs:Depends},
161-
libadbc-driver-manager105 (= ${binary:Version})
161+
libadbc-driver-manager106 (= ${binary:Version})
162162
Description: Apache Arrow Database Connectivity (ADBC) driver manager
163163
.
164164
This package provides GLib based library files.

ci/linux-packages/debian/libadbc-driver-flightsql105.install renamed to ci/linux-packages/debian/libadbc-driver-flightsql106.install

File renamed without changes.

ci/linux-packages/debian/libadbc-driver-manager105.install renamed to ci/linux-packages/debian/libadbc-driver-manager106.install

File renamed without changes.

ci/linux-packages/debian/libadbc-driver-postgresql105.install renamed to ci/linux-packages/debian/libadbc-driver-postgresql106.install

File renamed without changes.

ci/linux-packages/debian/libadbc-driver-snowflake105.install renamed to ci/linux-packages/debian/libadbc-driver-snowflake106.install

File renamed without changes.

ci/linux-packages/debian/libadbc-driver-sqlite105.install renamed to ci/linux-packages/debian/libadbc-driver-sqlite106.install

File renamed without changes.

0 commit comments

Comments
 (0)