diff --git a/c_glib/meson.build b/c_glib/meson.build
index e5995a0a6aa02..9ffc96c57e404 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 = '15.0.1'
+version = '15.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 217f72900f92b..1a988009e94e6 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=15.0.1
+pkgver=15.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 f849f96dadfa3..7c8d1ccd160d5 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 "15.0.1")
+set(ARROW_VERSION "15.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 7a59b0f96f89d..db615acd61ecc 100644
--- a/cpp/vcpkg.json
+++ b/cpp/vcpkg.json
@@ -1,6 +1,6 @@
{
"name": "arrow",
- "version-string": "15.0.1",
+ "version-string": "15.0.2",
"dependencies": [
"abseil",
{
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index 5558b28c2f2fc..58dc56563eb03 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
- 15.0.1
+ 15.0.2
diff --git a/dev/tasks/homebrew-formulae/apache-arrow-glib.rb b/dev/tasks/homebrew-formulae/apache-arrow-glib.rb
index bf4407598ae10..01e9d8c04c819 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-15.0.1/apache-arrow-15.0.1.tar.gz"
+ url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-15.0.2/apache-arrow-15.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 dd3b617c62d2f..dfc35f6f16dcb 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-15.0.1/apache-arrow-15.0.1.tar.gz"
+ url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-15.0.2/apache-arrow-15.0.2.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
license "Apache-2.0"
head "https://github.com/apache/arrow.git", branch: "main"
diff --git a/go/arrow/doc.go b/go/arrow/doc.go
index 2da9b51a52b78..d146bc277868f 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 = "15.0.1"
+const PkgVersion = "15.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 4f3ab0a6c9215..33dbe71b0d63a 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 15.0.1"
+ DefaultCreatedBy = "parquet-go version 15.0.2"
DefaultRootName = "schema"
)
diff --git a/java/adapter/avro/pom.xml b/java/adapter/avro/pom.xml
index 445a9796f9725..d34b74865826c 100644
--- a/java/adapter/avro/pom.xml
+++ b/java/adapter/avro/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
../../pom.xml
diff --git a/java/adapter/jdbc/pom.xml b/java/adapter/jdbc/pom.xml
index 573a1983747b7..1155f1f527d5f 100644
--- a/java/adapter/jdbc/pom.xml
+++ b/java/adapter/jdbc/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
../../pom.xml
diff --git a/java/adapter/orc/pom.xml b/java/adapter/orc/pom.xml
index 6f5325b95cf9a..7ea1c758d202b 100644
--- a/java/adapter/orc/pom.xml
+++ b/java/adapter/orc/pom.xml
@@ -111,7 +111,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
../../pom.xml
diff --git a/java/algorithm/pom.xml b/java/algorithm/pom.xml
index 81dc0ba9c1040..ce3bf6dea5e32 100644
--- a/java/algorithm/pom.xml
+++ b/java/algorithm/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
arrow-algorithm
Arrow Algorithms
diff --git a/java/bom/pom.xml b/java/bom/pom.xml
index 550404233fb92..8241f99239151 100644
--- a/java/bom/pom.xml
+++ b/java/bom/pom.xml
@@ -20,7 +20,7 @@
org.apache.arrow
arrow-bom
- 15.0.1
+ 15.0.2
pom
Arrow Bill of Materials
Arrow Bill of Materials
diff --git a/java/c/pom.xml b/java/c/pom.xml
index 73f7595c1228e..95f137c4cfc4c 100644
--- a/java/c/pom.xml
+++ b/java/c/pom.xml
@@ -13,7 +13,7 @@
arrow-java-root
org.apache.arrow
- 15.0.1
+ 15.0.2
4.0.0
diff --git a/java/compression/pom.xml b/java/compression/pom.xml
index bfa07836c1b14..2ab0a5e44f911 100644
--- a/java/compression/pom.xml
+++ b/java/compression/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
arrow-compression
Arrow Compression
diff --git a/java/dataset/pom.xml b/java/dataset/pom.xml
index f5caeeb6116bf..e4158427d396c 100644
--- a/java/dataset/pom.xml
+++ b/java/dataset/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 15.0.1
+ 15.0.2
4.0.0
diff --git a/java/flight/flight-core/pom.xml b/java/flight/flight-core/pom.xml
index 109185dd2de8f..0c78b6e08dad4 100644
--- a/java/flight/flight-core/pom.xml
+++ b/java/flight/flight-core/pom.xml
@@ -14,7 +14,7 @@
arrow-flight
org.apache.arrow
- 15.0.1
+ 15.0.2
../pom.xml
diff --git a/java/flight/flight-grpc/pom.xml b/java/flight/flight-grpc/pom.xml
index 669a97ced9899..2f8a32746c7a9 100644
--- a/java/flight/flight-grpc/pom.xml
+++ b/java/flight/flight-grpc/pom.xml
@@ -13,7 +13,7 @@
arrow-flight
org.apache.arrow
- 15.0.1
+ 15.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 b5b7a0a6cc1d5..92530f5d39e53 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
- 15.0.1
+ 15.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 823dd47019e19..328222a6a0b22 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
- 15.0.1
+ 15.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 d654128dc6bdc..0ad06b73231a0 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
- 15.0.1
+ 15.0.2
../pom.xml
4.0.0
diff --git a/java/flight/flight-sql/pom.xml b/java/flight/flight-sql/pom.xml
index 769271adce6cb..8b0b5ae8ce19f 100644
--- a/java/flight/flight-sql/pom.xml
+++ b/java/flight/flight-sql/pom.xml
@@ -14,7 +14,7 @@
arrow-flight
org.apache.arrow
- 15.0.1
+ 15.0.2
../pom.xml
diff --git a/java/flight/pom.xml b/java/flight/pom.xml
index a844ec265004d..ae419f9de4122 100644
--- a/java/flight/pom.xml
+++ b/java/flight/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 15.0.1
+ 15.0.2
4.0.0
diff --git a/java/format/pom.xml b/java/format/pom.xml
index 1647a0814ae5c..cc5164e87f86b 100644
--- a/java/format/pom.xml
+++ b/java/format/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 15.0.1
+ 15.0.2
arrow-format
diff --git a/java/gandiva/pom.xml b/java/gandiva/pom.xml
index ac45b3fd25a73..2c22911e1d7f7 100644
--- a/java/gandiva/pom.xml
+++ b/java/gandiva/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
org.apache.arrow.gandiva
diff --git a/java/maven/module-info-compiler-maven-plugin/pom.xml b/java/maven/module-info-compiler-maven-plugin/pom.xml
index 509fbf6045448..f6185199d9a18 100644
--- a/java/maven/module-info-compiler-maven-plugin/pom.xml
+++ b/java/maven/module-info-compiler-maven-plugin/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow.maven.plugins
arrow-maven-plugins
- 15.0.1
+ 15.0.2
module-info-compiler-maven-plugin
maven-plugin
diff --git a/java/maven/pom.xml b/java/maven/pom.xml
index d91f16278c029..25a49029d5da6 100644
--- a/java/maven/pom.xml
+++ b/java/maven/pom.xml
@@ -17,7 +17,7 @@
-->
org.apache.arrow.maven.plugins
arrow-maven-plugins
- 15.0.1
+ 15.0.2
Arrow Maven Plugins
pom
diff --git a/java/memory/memory-core/pom.xml b/java/memory/memory-core/pom.xml
index c84982c57238a..73da94126b46a 100644
--- a/java/memory/memory-core/pom.xml
+++ b/java/memory/memory-core/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 15.0.1
+ 15.0.2
4.0.0
diff --git a/java/memory/memory-netty/pom.xml b/java/memory/memory-netty/pom.xml
index 4552f59fdaa70..4502e19317f63 100644
--- a/java/memory/memory-netty/pom.xml
+++ b/java/memory/memory-netty/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 15.0.1
+ 15.0.2
4.0.0
diff --git a/java/memory/memory-unsafe/pom.xml b/java/memory/memory-unsafe/pom.xml
index 97c482c307c17..5a3f063b2ffcd 100644
--- a/java/memory/memory-unsafe/pom.xml
+++ b/java/memory/memory-unsafe/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 15.0.1
+ 15.0.2
4.0.0
diff --git a/java/memory/pom.xml b/java/memory/pom.xml
index 08244f708d116..8f94609b8a10e 100644
--- a/java/memory/pom.xml
+++ b/java/memory/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
arrow-memory
Arrow Memory
diff --git a/java/performance/pom.xml b/java/performance/pom.xml
index 71db4190625e0..ac7daf89dc609 100644
--- a/java/performance/pom.xml
+++ b/java/performance/pom.xml
@@ -14,7 +14,7 @@
arrow-java-root
org.apache.arrow
- 15.0.1
+ 15.0.2
arrow-performance
jar
diff --git a/java/pom.xml b/java/pom.xml
index 7b207d679e856..4693f013a26b6 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -20,7 +20,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
pom
Apache Arrow Java Root POM
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index d5deb83fd0a17..47fe0c80aab60 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
arrow-tools
Arrow Tools
diff --git a/java/vector/pom.xml b/java/vector/pom.xml
index 15de880c3065d..edea6a8571a98 100644
--- a/java/vector/pom.xml
+++ b/java/vector/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 15.0.1
+ 15.0.2
arrow-vector
Arrow Vectors
diff --git a/js/package.json b/js/package.json
index 3ba5d764477aa..40b706d3209b1 100644
--- a/js/package.json
+++ b/js/package.json
@@ -121,5 +121,5 @@
"engines": {
"node": ">=12.0"
},
- "version": "15.0.1"
+ "version": "15.0.2"
}
diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt
index f5e50235ea594..17688833e6e70 100644
--- a/matlab/CMakeLists.txt
+++ b/matlab/CMakeLists.txt
@@ -94,7 +94,7 @@ endfunction()
set(CMAKE_CXX_STANDARD 17)
-set(MLARROW_VERSION "15.0.1")
+set(MLARROW_VERSION "15.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 f846288cdb1a8..b6d82e4b09924 100644
--- a/python/CMakeLists.txt
+++ b/python/CMakeLists.txt
@@ -21,7 +21,7 @@
cmake_minimum_required(VERSION 3.16)
project(pyarrow)
-set(PYARROW_VERSION "15.0.1")
+set(PYARROW_VERSION "15.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 73e8ec1ddb5e3..5a3cbbc61f599 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 = '15.0.1'
+default_version = '15.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 5b0de6da4842d..098c688d151b3 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
Package: arrow
Title: Integration to 'Apache' 'Arrow'
-Version: 15.0.1
+Version: 15.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 52220ebb7960f..7e18e185db3af 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,7 +17,7 @@
under the License.
-->
-# arrow 15.0.1
+# arrow 15.0.2
# arrow 14.0.2
diff --git a/r/pkgdown/assets/versions.json b/r/pkgdown/assets/versions.json
index 44b4c76e4ca56..e4e9534a81b46 100644
--- a/r/pkgdown/assets/versions.json
+++ b/r/pkgdown/assets/versions.json
@@ -1,10 +1,10 @@
[
{
- "name": "15.0.1.9000 (dev)",
+ "name": "15.0.2.9000 (dev)",
"version": "dev/"
},
{
- "name": "15.0.1 (release)",
+ "name": "15.0.2 (release)",
"version": ""
},
{
diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
index af35e4f587e71..44eedbb23f0b6 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 = "15.0.1"
+ VERSION = "15.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 4a3ff072ad5d5..e094b65f201e3 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 = "15.0.1"
+ VERSION = "15.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 3a4bfc9820e44..45c2c19929956 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 = "15.0.1"
+ VERSION = "15.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 18b661b3f029b..836246d2f5e24 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 = "15.0.1"
+ VERSION = "15.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 b44b548dbddd5..97796f7ee371c 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 = "15.0.1"
+ VERSION = "15.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 2bc5eb030869f..d893692498053 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 = "15.0.1"
+ VERSION = "15.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 1d1765e38257b..51ba4ca7ff17c 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 = "15.0.1"
+ VERSION = "15.0.2"
module Version
numbers, TAG = VERSION.split("-")