Skip to content

Commit b093c15

Browse files
committed
chore: update versions for 18
1 parent 6db5596 commit b093c15

File tree

32 files changed

+39
-30
lines changed

32 files changed

+39
-30
lines changed

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.6.0-SNAPSHOT")
24+
set(ADBC_VERSION "1.6.0")
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
@@ -19,7 +19,7 @@ project(
1919
'arrow-adbc',
2020
'c',
2121
'cpp',
22-
version: '1.6.0-SNAPSHOT',
22+
version: '1.6.0',
2323
license: 'Apache-2.0',
2424
meson_version: '>=1.3.0',
2525
default_options: [

ci/linux-packages/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
apache-arrow-adbc (18-1) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- David Li <li.davidm96@gmail.com> Fri, 02 May 2025 00:43:18 -0000
6+
17
apache-arrow-adbc (0.1.0-1) unstable; urgency=low
28

39
* New upstream release.

ci/linux-packages/yum/apache-arrow-adbc.spec.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,9 @@ Documentation for Apache Arrow GLib integration.
352352
%{_docdir}/adbc-arrow-glib/
353353

354354
%changelog
355+
* Fri May 02 2025 David Li <li.davidm96@gmail.com> - 18-1
356+
- New upstream release.
357+
355358
* Thu Apr 27 2023 Matt Topol <matt@voltrondata.com> - 0.4.0-1
356359
- Add snowflake driver
357360
* Mon Dec 26 2022 Sutou Kouhei <kou@clear-code.com> - 0.1.0-1

csharp/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<Copyright>Copyright 2022-2025 The Apache Software Foundation</Copyright>
3131
<Company>The Apache Software Foundation</Company>
3232
<VersionPrefix>0.18.0</VersionPrefix>
33-
<VersionSuffix>SNAPSHOT</VersionSuffix>
33+
<VersionSuffix></VersionSuffix>
3434
</PropertyGroup>
3535

3636
<PropertyGroup>

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
registered trademarks or trademarks of The Apache Software Foundation in the
3232
United States and other countries."""
3333
author = "the Apache Arrow Developers"
34-
release = "18 (dev)"
34+
release = "18"
3535
# Needed to generate version switcher
3636
version = release
3737

glib/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project(
2222
'c',
2323
default_options: ['c_std=c99'],
2424
license: 'Apache-2.0',
25-
version: '1.6.0-SNAPSHOT',
25+
version: '1.6.0',
2626
)
2727

2828
version_numbers = meson.project_version().split('-')[0].split('.')

java/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
</parent>
2727

2828
<artifactId>adbc-core</artifactId>

java/driver-manager/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
</parent>
2727

2828
<artifactId>adbc-driver-manager</artifactId>

java/driver/flight-sql-validation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/flight-sql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/jdbc-validation-derby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/jdbc-validation-mssqlserver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/jdbc-validation-postgresql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/jdbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/jni/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/driver/validation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

java/pom.xml

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

2929
<groupId>org.apache.arrow.adbc</groupId>
3030
<artifactId>arrow-adbc-java-root</artifactId>
31-
<version>0.18.0-SNAPSHOT</version>
31+
<version>0.18.0</version>
3232
<packaging>pom</packaging>
3333

3434
<name>Apache Arrow ADBC Java Root POM</name>

java/sql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.arrow.adbc</groupId>
2424
<artifactId>arrow-adbc-java-root</artifactId>
25-
<version>0.18.0-SNAPSHOT</version>
25+
<version>0.18.0</version>
2626
</parent>
2727

2828
<artifactId>adbc-sql</artifactId>

python/adbc_driver_bigquery/adbc_driver_bigquery/_static_version.py

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

2121
# This file is part of 'miniver': https://github.com/jbweston/miniver
2222

23-
version = "1.6.0dev"
23+
version = "1.6.0"
2424

2525
# These values are only set if the distribution was created with 'git archive'
2626
# NOTE: must add an export-subst to .gitattributes!

python/adbc_driver_flightsql/adbc_driver_flightsql/_static_version.py

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

2121
# This file is part of 'miniver': https://github.com/jbweston/miniver
2222

23-
version = "1.6.0dev"
23+
version = "1.6.0"
2424

2525
# These values are only set if the distribution was created with 'git archive'
2626
# NOTE: must add an export-subst to .gitattributes!

python/adbc_driver_manager/adbc_driver_manager/_static_version.py

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

2121
# This file is part of 'miniver': https://github.com/jbweston/miniver
2222

23-
version = "1.6.0dev"
23+
version = "1.6.0"
2424

2525
# These values are only set if the distribution was created with 'git archive'
2626
# NOTE: must add an export-subst to .gitattributes!

python/adbc_driver_postgresql/adbc_driver_postgresql/_static_version.py

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

2121
# This file is part of 'miniver': https://github.com/jbweston/miniver
2222

23-
version = "1.6.0dev"
23+
version = "1.6.0"
2424

2525
# These values are only set if the distribution was created with 'git archive'
2626
# NOTE: must add an export-subst to .gitattributes!

python/adbc_driver_snowflake/adbc_driver_snowflake/_static_version.py

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

2121
# This file is part of 'miniver': https://github.com/jbweston/miniver
2222

23-
version = "1.6.0dev"
23+
version = "1.6.0"
2424

2525
# These values are only set if the distribution was created with 'git archive'
2626
# NOTE: must add an export-subst to .gitattributes!

python/adbc_driver_sqlite/adbc_driver_sqlite/_static_version.py

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

2121
# This file is part of 'miniver': https://github.com/jbweston/miniver
2222

23-
version = "1.6.0dev"
23+
version = "1.6.0"
2424

2525
# These values are only set if the distribution was created with 'git archive'
2626
# NOTE: must add an export-subst to .gitattributes!

r/adbcbigquery/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: adbcbigquery
22
Title: 'Arrow' Database Connectivity ('ADBC') 'BigQuery' Driver
3-
Version: 0.17.0.9000
3+
Version: 0.18.0
44
Authors@R: c(
55
person("Dewey", "Dunnington", , "dewey@dunnington.ca", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0002-9415-4582")),

r/adbcdrivermanager/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: adbcdrivermanager
22
Title: 'Arrow' Database Connectivity ('ADBC') Driver Manager
3-
Version: 0.17.0.9000
3+
Version: 0.18.0
44
Authors@R: c(
55
person("Dewey", "Dunnington", , "dewey@dunnington.ca", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0002-9415-4582")),

r/adbcflightsql/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: adbcflightsql
22
Title: 'Arrow' Database Connectivity ('ADBC') 'FlightSQL' Driver
3-
Version: 0.17.0.9000
3+
Version: 0.18.0
44
Authors@R: c(
55
person("Dewey", "Dunnington", , "dewey@dunnington.ca", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0002-9415-4582")),

r/adbcpostgresql/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: adbcpostgresql
22
Title: 'Arrow' Database Connectivity ('ADBC') 'PostgreSQL' Driver
3-
Version: 0.17.0.9000
3+
Version: 0.18.0
44
Authors@R: c(
55
person("Dewey", "Dunnington", , "dewey@dunnington.ca", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0002-9415-4582")),

r/adbcsnowflake/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: adbcsnowflake
22
Title: Arrow Database Connectivity ('ADBC') 'Snowflake' Driver
3-
Version: 0.17.0.9000
3+
Version: 0.18.0
44
Authors@R: c(
55
person("Dewey", "Dunnington", , "dewey@dunnington.ca", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0002-9415-4582")),

r/adbcsqlite/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: adbcsqlite
22
Title: 'Arrow' Database Connectivity ('ADBC') 'SQLite' Driver
3-
Version: 0.17.0.9000
3+
Version: 0.18.0
44
Authors@R: c(
55
person("Dewey", "Dunnington", , "dewey@dunnington.ca", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0002-9415-4582")),

ruby/lib/adbc/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
module ADBC
19-
VERSION = "1.6.0-SNAPSHOT"
19+
VERSION = "1.6.0"
2020

2121
module Version
2222
MAJOR, MINOR, MICRO, TAG = VERSION.split(".").collect(&:to_i)

0 commit comments

Comments
 (0)