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

0 commit comments

Comments
 (0)