diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7bb01779afdce..81b8755c606fb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,46 @@
+# Apache Arrow 14.0.2 (2023-11-29 08:00:00)
+
+## New Features and Improvements
+
+* [GH-27839](https://github.com/apache/arrow/issues/27839) - [R] Fetch latest nightly binary for arrow R dev versions. (#38236)
+* [GH-38342](https://github.com/apache/arrow/issues/38342) - [Python] Update to_pandas to use non-deprecated DataFrame constructor (#38374)
+* [GH-38364](https://github.com/apache/arrow/issues/38364) - [Python] Initialize S3 on first use (#38375)
+* [GH-38430](https://github.com/apache/arrow/issues/38430) - [R] Add test + fix corner cases after nixlibs.R refactor (#38534)
+* [GH-38432](https://github.com/apache/arrow/issues/38432) - [C++][Parquet] Try to fix performance regression in the DictByteArrayDecoderImpl (#38784)
+* [GH-38449](https://github.com/apache/arrow/issues/38449) - [Release][Go][macOS] Use local test data if possible (#38450)
+* [GH-38570](https://github.com/apache/arrow/issues/38570) - [R] Ensure that test-nix-libs is warning free (#38571)
+* [GH-38591](https://github.com/apache/arrow/issues/38591) - [Parquet][C++] Remove redundant open calls in `ParquetFileFormat::GetReaderAsync` (#38621)
+* [GH-38756](https://github.com/apache/arrow/issues/38756) - [R] More debug output for r/configure and nixlibs.R (#38819)
+* [GH-38864](https://github.com/apache/arrow/issues/38864) - [R] Update NEWS.md for 14.0.0.1 (#38866)
+* [GH-38904](https://github.com/apache/arrow/issues/38904) - [R] Update news.md for 14.0.0.2 (#39022)
+* [GH-39041](https://github.com/apache/arrow/issues/39041) - [R] Improve `update-checksum.R` output (#39042)
+
+
+## Bug Fixes
+
+* [GH-38345](https://github.com/apache/arrow/issues/38345) - [Release] Use local test data for verification if possible (#38362)
+* [GH-38438](https://github.com/apache/arrow/issues/38438) - [C++] Dataset: Trying to fix the async bug in Parquet dataset (#38466)
+* [GH-38577](https://github.com/apache/arrow/issues/38577) - Reading parquet file behavior change from 13.0.0 to 14.0.0
+* [GH-38618](https://github.com/apache/arrow/issues/38618) - [C++] S3FileSystem: fix regression in deleting explicitly created sub-directories (#38845)
+* [GH-38626](https://github.com/apache/arrow/issues/38626) - [Python] Fix segfault when PyArrow is imported at shutdown (#38637)
+* [GH-38676](https://github.com/apache/arrow/issues/38676) - [Python] Fix potential deadlock when CSV reading errors out (#38713)
+* [GH-38715](https://github.com/apache/arrow/issues/38715) - [R] Fix possible bashism in configure script (#38716)
+* [GH-38752](https://github.com/apache/arrow/issues/38752) - [R] Wrap rosetta detection in tryCatch (#38754)
+* [GH-38766](https://github.com/apache/arrow/issues/38766) - [R] Add timeout option to try_download (#38767)
+* [GH-38779](https://github.com/apache/arrow/issues/38779) - [R][CI] Use devtools on self-hosted machines and use macos-11 for intel package build (#38974)
+* [GH-38861](https://github.com/apache/arrow/issues/38861) - [C++] Add missing "-framework Security" to Libs.private in arrow.pc (#38869)
+* [GH-38893](https://github.com/apache/arrow/issues/38893) - [R] Fix printf syntax in altrep.cpp (#38894)
+* [GH-38902](https://github.com/apache/arrow/issues/38902) - [R] Handle failing library detection with pkg-config (#38970)
+* [GH-38984](https://github.com/apache/arrow/issues/38984) - [Python][Packaging] Verification of wheels on AlmaLinux 8 are failing due to missing pip (#38985)
+* [GH-39003](https://github.com/apache/arrow/issues/39003) - [CI][macOS] Don't update Homebrew (#39016)
+* [GH-39072](https://github.com/apache/arrow/issues/39072) - [Release][CI] Python3.11-devel is required for the verification job on AlmaLinux 8 (#39073)
+* [GH-39074](https://github.com/apache/arrow/issues/39074) - [Release][Packaging] Use UTF-8 explicitly for KEYS (#39082)
+* [GH-39076](https://github.com/apache/arrow/issues/39076) - [R] Fix tests that trigger confusing dplyr warnings (#39077)
+* [GH-39138](https://github.com/apache/arrow/issues/39138) - [R] Compile with \`-Wconversion\` on clang15 results in compiler warnings
+
+
+
# Apache Arrow 14.0.1 (2023-11-06)
## Bug Fixes
diff --git a/c_glib/meson.build b/c_glib/meson.build
index 62ab66952f98d..fd28798b1cdcc 100644
--- a/c_glib/meson.build
+++ b/c_glib/meson.build
@@ -24,7 +24,7 @@ project('arrow-glib', 'c', 'cpp',
'cpp_std=c++17',
])
-version = '14.0.1'
+version = '14.0.2'
if version.endswith('-SNAPSHOT')
version_numbers = version.split('-')[0].split('.')
version_tag = version.split('-')[1]
diff --git a/ci/scripts/PKGBUILD b/ci/scripts/PKGBUILD
index 5101d5e077204..d1c7dfde02b98 100644
--- a/ci/scripts/PKGBUILD
+++ b/ci/scripts/PKGBUILD
@@ -18,7 +18,7 @@
_realname=arrow
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
-pkgver=14.0.1
+pkgver=14.0.2
pkgrel=8000
pkgdesc="Apache Arrow is a cross-language development platform for in-memory data (mingw-w64)"
arch=("any")
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index 11d62f6aed020..05c05c67ff5f1 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -71,7 +71,7 @@ if(POLICY CMP0135)
cmake_policy(SET CMP0135 NEW)
endif()
-set(ARROW_VERSION "14.0.1")
+set(ARROW_VERSION "14.0.2")
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}")
diff --git a/cpp/vcpkg.json b/cpp/vcpkg.json
index 54418eda62ada..46dd47b7d1bea 100644
--- a/cpp/vcpkg.json
+++ b/cpp/vcpkg.json
@@ -1,6 +1,6 @@
{
"name": "arrow",
- "version-string": "14.0.1",
+ "version-string": "14.0.2",
"dependencies": [
"abseil",
{
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index 9d2f492053701..9373559d2e061 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -29,7 +29,7 @@
Apache Arrow library
Copyright 2016-2019 The Apache Software Foundation
The Apache Software Foundation
- 14.0.1
+ 14.0.2
diff --git a/dev/tasks/homebrew-formulae/apache-arrow-glib.rb b/dev/tasks/homebrew-formulae/apache-arrow-glib.rb
index 1abe5966a4cbc..af3a085a2ed15 100644
--- a/dev/tasks/homebrew-formulae/apache-arrow-glib.rb
+++ b/dev/tasks/homebrew-formulae/apache-arrow-glib.rb
@@ -29,7 +29,7 @@
class ApacheArrowGlib < Formula
desc "GLib bindings for Apache Arrow"
homepage "https://arrow.apache.org/"
- url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-14.0.1/apache-arrow-14.0.1.tar.gz"
+ url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-14.0.2/apache-arrow-14.0.2.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git", branch: "main"
diff --git a/dev/tasks/homebrew-formulae/apache-arrow.rb b/dev/tasks/homebrew-formulae/apache-arrow.rb
index 407775a98fabb..18c308dd3ea74 100644
--- a/dev/tasks/homebrew-formulae/apache-arrow.rb
+++ b/dev/tasks/homebrew-formulae/apache-arrow.rb
@@ -29,7 +29,7 @@
class ApacheArrow < Formula
desc "Columnar in-memory analytics layer designed to accelerate big data"
homepage "https://arrow.apache.org/"
- url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-14.0.1/apache-arrow-14.0.1.tar.gz"
+ url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-14.0.2/apache-arrow-14.0.2.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git", branch: "main"
diff --git a/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog b/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog
index 2bc67587d9ce9..762f03e1596b3 100644
--- a/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog
+++ b/dev/tasks/linux-packages/apache-arrow-apt-source/debian/changelog
@@ -1,3 +1,9 @@
+apache-arrow-apt-source (14.0.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Raúl Cumplido Tue, 12 Dec 2023 09:31:40 -0000
+
apache-arrow-apt-source (14.0.1-1) unstable; urgency=low
* New upstream release.
diff --git a/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in b/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in
index 245e8afeaeb1d..348f8064ecc5f 100644
--- a/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in
+++ b/dev/tasks/linux-packages/apache-arrow-release/yum/apache-arrow-release.spec.in
@@ -102,6 +102,9 @@ else
fi
%changelog
+* Tue Dec 12 2023 Raúl Cumplido - 14.0.2-1
+- New upstream release.
+
* Mon Nov 06 2023 Raúl Cumplido - 14.0.1-1
- New upstream release.
diff --git a/dev/tasks/linux-packages/apache-arrow/debian/changelog b/dev/tasks/linux-packages/apache-arrow/debian/changelog
index f55ac573c7f80..806c634e05bfa 100644
--- a/dev/tasks/linux-packages/apache-arrow/debian/changelog
+++ b/dev/tasks/linux-packages/apache-arrow/debian/changelog
@@ -1,3 +1,9 @@
+apache-arrow (14.0.2-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Raúl Cumplido Tue, 12 Dec 2023 09:31:40 -0000
+
apache-arrow (14.0.1-1) unstable; urgency=low
* New upstream release.
diff --git a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
index 87e05558e8cda..44421ce0ea1e4 100644
--- a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
+++ b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
@@ -864,6 +864,9 @@ Documentation for Apache Parquet GLib.
%{_datadir}/gtk-doc/html/parquet-glib/
%changelog
+* Tue Dec 12 2023 Raúl Cumplido - 14.0.2-1
+- New upstream release.
+
* Mon Nov 06 2023 Raúl Cumplido - 14.0.1-1
- New upstream release.
diff --git a/docs/source/_static/versions.json b/docs/source/_static/versions.json
index 56411de862096..0d6c1c36df0f7 100644
--- a/docs/source/_static/versions.json
+++ b/docs/source/_static/versions.json
@@ -15,6 +15,11 @@
"version": "14.0/",
"url": "https://arrow.apache.org/docs/14.0/"
},
+ {
+ "name": "14.0",
+ "version": "14.0/",
+ "url": "https://arrow.apache.org/docs/14.0/"
+ },
{
"name": "13.0",
"version": "13.0/",
diff --git a/go/arrow/doc.go b/go/arrow/doc.go
index 4583985dd1d79..e923d05d66827 100644
--- a/go/arrow/doc.go
+++ b/go/arrow/doc.go
@@ -36,7 +36,7 @@ To build with tinygo include the noasm build tag.
*/
package arrow
-const PkgVersion = "14.0.1"
+const PkgVersion = "14.0.2"
//go:generate go run _tools/tmpl/main.go -i -data=numeric.tmpldata type_traits_numeric.gen.go.tmpl type_traits_numeric.gen_test.go.tmpl array/numeric.gen.go.tmpl array/numericbuilder.gen.go.tmpl array/bufferbuilder_numeric.gen.go.tmpl
//go:generate go run _tools/tmpl/main.go -i -data=datatype_numeric.gen.go.tmpldata datatype_numeric.gen.go.tmpl tensor/numeric.gen.go.tmpl tensor/numeric.gen_test.go.tmpl
diff --git a/go/parquet/writer_properties.go b/go/parquet/writer_properties.go
index 9e57515c1b7fc..d8bdcb80dfa47 100644
--- a/go/parquet/writer_properties.go
+++ b/go/parquet/writer_properties.go
@@ -46,7 +46,7 @@ const (
DefaultStatsEnabled = true
// If the stats are larger than 4K the writer will skip writing them out anyways.
DefaultMaxStatsSize int64 = 4096
- DefaultCreatedBy = "parquet-go version 14.0.1"
+ DefaultCreatedBy = "parquet-go version 14.0.2"
DefaultRootName = "schema"
)
diff --git a/java/adapter/avro/pom.xml b/java/adapter/avro/pom.xml
index 58cfe5a3c66e8..a43e350483a5e 100644
--- a/java/adapter/avro/pom.xml
+++ b/java/adapter/avro/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
../../pom.xml
diff --git a/java/adapter/jdbc/pom.xml b/java/adapter/jdbc/pom.xml
index 089904298d640..9a5b42b0212a7 100644
--- a/java/adapter/jdbc/pom.xml
+++ b/java/adapter/jdbc/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
../../pom.xml
diff --git a/java/adapter/orc/pom.xml b/java/adapter/orc/pom.xml
index 0f0ec1e0d00d0..1f9587e25aa7d 100644
--- a/java/adapter/orc/pom.xml
+++ b/java/adapter/orc/pom.xml
@@ -114,7 +114,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
../../pom.xml
diff --git a/java/algorithm/pom.xml b/java/algorithm/pom.xml
index c8fb3ab8708e1..60f9b6c8e25fb 100644
--- a/java/algorithm/pom.xml
+++ b/java/algorithm/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
arrow-algorithm
Arrow Algorithms
diff --git a/java/c/pom.xml b/java/c/pom.xml
index 73eda46989fbc..61644f15b8a38 100644
--- a/java/c/pom.xml
+++ b/java/c/pom.xml
@@ -13,7 +13,7 @@
arrow-java-root
org.apache.arrow
- 14.0.1
+ 14.0.2
4.0.0
diff --git a/java/compression/pom.xml b/java/compression/pom.xml
index 3b41cf1d8b7a4..38140168dd3cd 100644
--- a/java/compression/pom.xml
+++ b/java/compression/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
arrow-compression
Arrow Compression
diff --git a/java/dataset/pom.xml b/java/dataset/pom.xml
index cb8c15f4e2768..d3c1c4713f2e9 100644
--- a/java/dataset/pom.xml
+++ b/java/dataset/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 14.0.1
+ 14.0.2
4.0.0
diff --git a/java/flight/flight-core/pom.xml b/java/flight/flight-core/pom.xml
index 575da0c130464..be91203d73d05 100644
--- a/java/flight/flight-core/pom.xml
+++ b/java/flight/flight-core/pom.xml
@@ -14,7 +14,7 @@
arrow-flight
org.apache.arrow
- 14.0.1
+ 14.0.2
../pom.xml
diff --git a/java/flight/flight-grpc/pom.xml b/java/flight/flight-grpc/pom.xml
index ee7929cdb762a..864c629f6b044 100644
--- a/java/flight/flight-grpc/pom.xml
+++ b/java/flight/flight-grpc/pom.xml
@@ -13,7 +13,7 @@
arrow-flight
org.apache.arrow
- 14.0.1
+ 14.0.2
../pom.xml
4.0.0
diff --git a/java/flight/flight-integration-tests/pom.xml b/java/flight/flight-integration-tests/pom.xml
index 105d9921dcd61..46a3fe34ea203 100644
--- a/java/flight/flight-integration-tests/pom.xml
+++ b/java/flight/flight-integration-tests/pom.xml
@@ -15,7 +15,7 @@
arrow-flight
org.apache.arrow
- 14.0.1
+ 14.0.2
../pom.xml
diff --git a/java/flight/flight-sql-jdbc-core/pom.xml b/java/flight/flight-sql-jdbc-core/pom.xml
index c37d8a1bd3c83..b68a63bd3688c 100644
--- a/java/flight/flight-sql-jdbc-core/pom.xml
+++ b/java/flight/flight-sql-jdbc-core/pom.xml
@@ -16,7 +16,7 @@
arrow-flight
org.apache.arrow
- 14.0.1
+ 14.0.2
../pom.xml
4.0.0
diff --git a/java/flight/flight-sql-jdbc-driver/pom.xml b/java/flight/flight-sql-jdbc-driver/pom.xml
index 398c649e9dc39..a0edf112f73e7 100644
--- a/java/flight/flight-sql-jdbc-driver/pom.xml
+++ b/java/flight/flight-sql-jdbc-driver/pom.xml
@@ -16,7 +16,7 @@
arrow-flight
org.apache.arrow
- 14.0.1
+ 14.0.2
../pom.xml
4.0.0
diff --git a/java/flight/flight-sql/pom.xml b/java/flight/flight-sql/pom.xml
index f9a48fa3d4de3..bcefc4aeb830c 100644
--- a/java/flight/flight-sql/pom.xml
+++ b/java/flight/flight-sql/pom.xml
@@ -14,7 +14,7 @@
arrow-flight
org.apache.arrow
- 14.0.1
+ 14.0.2
../pom.xml
diff --git a/java/flight/pom.xml b/java/flight/pom.xml
index 8a97dfe9c7374..c01e3f1067348 100644
--- a/java/flight/pom.xml
+++ b/java/flight/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 14.0.1
+ 14.0.2
4.0.0
diff --git a/java/format/pom.xml b/java/format/pom.xml
index 73dd51a9add2a..36b99beef83ee 100644
--- a/java/format/pom.xml
+++ b/java/format/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 14.0.1
+ 14.0.2
arrow-format
diff --git a/java/gandiva/pom.xml b/java/gandiva/pom.xml
index b5a5c4ffdb796..450fc944563e5 100644
--- a/java/gandiva/pom.xml
+++ b/java/gandiva/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
org.apache.arrow.gandiva
diff --git a/java/memory/memory-core/pom.xml b/java/memory/memory-core/pom.xml
index daa73a0b5b6a3..18f268849b40a 100644
--- a/java/memory/memory-core/pom.xml
+++ b/java/memory/memory-core/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 14.0.1
+ 14.0.2
4.0.0
diff --git a/java/memory/memory-netty/pom.xml b/java/memory/memory-netty/pom.xml
index 4808841f13d12..df39c0058ba33 100644
--- a/java/memory/memory-netty/pom.xml
+++ b/java/memory/memory-netty/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 14.0.1
+ 14.0.2
4.0.0
diff --git a/java/memory/memory-unsafe/pom.xml b/java/memory/memory-unsafe/pom.xml
index 4b72706f38ff7..2dcb3ceae6605 100644
--- a/java/memory/memory-unsafe/pom.xml
+++ b/java/memory/memory-unsafe/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 14.0.1
+ 14.0.2
4.0.0
diff --git a/java/memory/pom.xml b/java/memory/pom.xml
index d383504331c89..68eaf87a2d5fd 100644
--- a/java/memory/pom.xml
+++ b/java/memory/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
arrow-memory
Arrow Memory
diff --git a/java/performance/pom.xml b/java/performance/pom.xml
index a31520bde42cc..685b502d27250 100644
--- a/java/performance/pom.xml
+++ b/java/performance/pom.xml
@@ -14,7 +14,7 @@
arrow-java-root
org.apache.arrow
- 14.0.1
+ 14.0.2
arrow-performance
jar
@@ -74,7 +74,7 @@
org.apache.arrow
arrow-algorithm
- 14.0.1
+ 14.0.2
test
diff --git a/java/pom.xml b/java/pom.xml
index a3a6a1b73af17..dea9baac371a8 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -20,7 +20,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
pom
Apache Arrow Java Root POM
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index a151932b37bc2..aa6f08c8dd70a 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
arrow-tools
Arrow Tools
diff --git a/java/vector/pom.xml b/java/vector/pom.xml
index eff1904c19c4f..31861862fa9ab 100644
--- a/java/vector/pom.xml
+++ b/java/vector/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 14.0.1
+ 14.0.2
arrow-vector
Arrow Vectors
diff --git a/js/package.json b/js/package.json
index 259bc2f26819b..3f860197099a6 100644
--- a/js/package.json
+++ b/js/package.json
@@ -121,5 +121,5 @@
"engines": {
"node": ">=12.0"
},
- "version": "14.0.1"
+ "version": "14.0.2"
}
diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt
index 36e0709e8a3a3..460da9cd77998 100644
--- a/matlab/CMakeLists.txt
+++ b/matlab/CMakeLists.txt
@@ -94,7 +94,7 @@ endfunction()
set(CMAKE_CXX_STANDARD 17)
-set(MLARROW_VERSION "14.0.1")
+set(MLARROW_VERSION "14.0.2")
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")
project(mlarrow VERSION "${MLARROW_BASE_VERSION}")
diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt
index 5892e4133d95e..0005f0fdf1923 100644
--- a/python/CMakeLists.txt
+++ b/python/CMakeLists.txt
@@ -21,7 +21,7 @@
cmake_minimum_required(VERSION 3.16)
project(pyarrow)
-set(PYARROW_VERSION "14.0.1")
+set(PYARROW_VERSION "14.0.2")
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" PYARROW_BASE_VERSION "${PYARROW_VERSION}")
# Running from a Python sdist tarball
diff --git a/python/setup.py b/python/setup.py
index f0ea3a0630bd4..c77afd3f1e771 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -407,7 +407,7 @@ def get_outputs(self):
# If the event of not running from a git clone (e.g. from a git archive
# or a Python sdist), see if we can set the version number ourselves
-default_version = '14.0.1'
+default_version = '14.0.2'
if (not os.path.exists('../.git') and
not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
os.environ['SETUPTOOLS_SCM_PRETEND_VERSION'] = \
diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index b3a4f2270522c..3ed2026a42947 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
Package: arrow
Title: Integration to 'Apache' 'Arrow'
-Version: 14.0.1
+Version: 14.0.2
Authors@R: c(
person("Neal", "Richardson", email = "neal.p.richardson@gmail.com", role = c("aut")),
person("Ian", "Cook", email = "ianmcook@gmail.com", role = c("aut")),
diff --git a/r/NEWS.md b/r/NEWS.md
index 63a861d54eebc..0ef6af095b0af 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,7 +17,7 @@
under the License.
-->
-# arrow 14.0.1
+# arrow 14.0.2
# arrow 14.0.0.9000
# arrow 14.0.1.9000
diff --git a/r/pkgdown/assets/versions.json b/r/pkgdown/assets/versions.json
index 424a5fbc5174a..514fafe5b0143 100644
--- a/r/pkgdown/assets/versions.json
+++ b/r/pkgdown/assets/versions.json
@@ -1,12 +1,16 @@
[
{
- "name": "14.0.1.9000 (dev)",
+ "name": "14.0.2.9000 (dev)",
"version": "dev/"
},
{
- "name": "14.0.1 (release)",
+ "name": "14.0.2 (release)",
"version": ""
},
+ {
+ "name": "14.0.1",
+ "version": "14.0/"
+ },
{
"name": "14.0.0",
"version": "14.0/"
diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
index a43006c7b600e..133de48c93c47 100644
--- a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
+++ b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
@@ -16,7 +16,7 @@
# under the License.
module ArrowCUDA
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb b/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb
index 945c9391f4a6e..6e39856dc718b 100644
--- a/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb
+++ b/ruby/red-arrow-dataset/lib/arrow-dataset/version.rb
@@ -16,7 +16,7 @@
# under the License.
module ArrowDataset
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow-flight-sql/lib/arrow-flight-sql/version.rb b/ruby/red-arrow-flight-sql/lib/arrow-flight-sql/version.rb
index 8a313b07b8675..06cba433b5a37 100644
--- a/ruby/red-arrow-flight-sql/lib/arrow-flight-sql/version.rb
+++ b/ruby/red-arrow-flight-sql/lib/arrow-flight-sql/version.rb
@@ -16,7 +16,7 @@
# under the License.
module ArrowFlightSQL
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow-flight/lib/arrow-flight/version.rb b/ruby/red-arrow-flight/lib/arrow-flight/version.rb
index a2da98d3a2359..0c65059ac42ba 100644
--- a/ruby/red-arrow-flight/lib/arrow-flight/version.rb
+++ b/ruby/red-arrow-flight/lib/arrow-flight/version.rb
@@ -16,7 +16,7 @@
# under the License.
module ArrowFlight
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-arrow/lib/arrow/version.rb b/ruby/red-arrow/lib/arrow/version.rb
index e5f9530452734..52c87ead36ef0 100644
--- a/ruby/red-arrow/lib/arrow/version.rb
+++ b/ruby/red-arrow/lib/arrow/version.rb
@@ -16,7 +16,7 @@
# under the License.
module Arrow
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-gandiva/lib/gandiva/version.rb b/ruby/red-gandiva/lib/gandiva/version.rb
index c3f8076063b47..77d44ea7d7752 100644
--- a/ruby/red-gandiva/lib/gandiva/version.rb
+++ b/ruby/red-gandiva/lib/gandiva/version.rb
@@ -16,7 +16,7 @@
# under the License.
module Gandiva
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-parquet/lib/parquet/version.rb b/ruby/red-parquet/lib/parquet/version.rb
index e533ba0eb8983..eec72859fa330 100644
--- a/ruby/red-parquet/lib/parquet/version.rb
+++ b/ruby/red-parquet/lib/parquet/version.rb
@@ -16,7 +16,7 @@
# under the License.
module Parquet
- VERSION = "14.0.1"
+ VERSION = "14.0.2"
module Version
numbers, TAG = VERSION.split("-")