Skip to content

Commit c405fef

Browse files
committed
chore: update versions for 16
1 parent 336c0e8 commit c405fef

File tree

31 files changed

+38
-29
lines changed

31 files changed

+38
-29
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.4.0-SNAPSHOT")
24+
set(ADBC_VERSION "1.4.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
@@ -18,7 +18,7 @@
1818
project(
1919
'arrow-adbc',
2020
'c', 'cpp',
21-
version: '1.4.0-SNAPSHOT',
21+
version: '1.4.0',
2222
license: 'Apache-2.0',
2323
meson_version: '>=1.3.0',
2424
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 (16-1) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- David Li <li.davidm96@gmail.com> Wed, 08 Jan 2025 01:11:11 -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
@@ -350,6 +350,9 @@ Documentation for Apache Arrow GLib integration.
350350
%{_docdir}/adbc-arrow-glib/
351351

352352
%changelog
353+
* Wed Jan 08 2025 David Li <li.davidm96@gmail.com> - 16-1
354+
- New upstream release.
355+
353356
* Thu Apr 27 2023 Matt Topol <matt@voltrondata.com> - 0.4.0-1
354357
- Add snowflake driver
355358
* 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-2024 The Apache Software Foundation</Copyright>
3131
<Company>The Apache Software Foundation</Company>
3232
<VersionPrefix>0.16.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
@@ -30,7 +30,7 @@
3030
registered trademarks or trademarks of The Apache Software Foundation in the
3131
United States and other countries."""
3232
author = "the Apache Arrow Developers"
33-
release = "16 (dev)"
33+
release = "16"
3434
# Needed to generate version switcher
3535
version = release
3636

glib/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project('adbc-glib',
2323
'c_std=c99',
2424
],
2525
license: 'Apache-2.0',
26-
version: '1.4.0-SNAPSHOT')
26+
version: '1.4.0')
2727

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

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.16.0-SNAPSHOT</version>
25+
<version>0.16.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.16.0-SNAPSHOT</version>
25+
<version>0.16.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.16.0-SNAPSHOT</version>
25+
<version>0.16.0</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

0 commit comments

Comments
 (0)