diff --git a/c_glib/configure.ac b/c_glib/configure.ac
index 8bab2f7fc071f..17e51819f6cac 100644
--- a/c_glib/configure.ac
+++ b/c_glib/configure.ac
@@ -17,7 +17,7 @@
AC_PREREQ(2.65)
-m4_define([arrow_glib_version], 0.15.0)
+m4_define([arrow_glib_version], 0.15.1)
AC_INIT([arrow-glib],
arrow_glib_version,
[https://issues.apache.org/jira/browse/ARROW],
diff --git a/c_glib/meson.build b/c_glib/meson.build
index b94a8b84ea399..9d3fea0db5e91 100644
--- a/c_glib/meson.build
+++ b/c_glib/meson.build
@@ -23,7 +23,7 @@ project('arrow-glib', 'c', 'cpp',
'cpp_std=c++11',
])
-version = '0.15.0'
+version = '0.15.1'
if version.endswith('-SNAPSHOT')
version_numbers = version.split('-')[0].split('.')
version_tag = version.split('-')[1]
diff --git a/ci/PKGBUILD b/ci/PKGBUILD
index 7cd9f2e1707fb..3df0c92a8c00f 100644
--- a/ci/PKGBUILD
+++ b/ci/PKGBUILD
@@ -18,7 +18,7 @@
_realname=arrow
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
-pkgver=0.15.0
+pkgver=0.15.1
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 7f81f89d35256..ccc35449e0f95 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -18,7 +18,7 @@
cmake_minimum_required(VERSION 3.2)
message(STATUS "Building using CMake version: ${CMAKE_VERSION}")
-set(ARROW_VERSION "0.15.0")
+set(ARROW_VERSION "0.15.1")
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}")
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index 8e9b9f1e8092c..401c3588d1bf0 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -12,7 +12,7 @@
Apache Arrow library
Copyright 2016-2019 The Apache Software Foundation
The Apache Software Foundation
- 0.15.0
+ 0.15.1
diff --git a/dev/tasks/homebrew-formulae/apache-arrow.rb b/dev/tasks/homebrew-formulae/apache-arrow.rb
index 355bd83efe2e0..cf3512ecb952c 100644
--- a/dev/tasks/homebrew-formulae/apache-arrow.rb
+++ b/dev/tasks/homebrew-formulae/apache-arrow.rb
@@ -1,7 +1,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.cgi?path=arrow/arrow-0.15.0/apache-arrow-0.15.0.tar.gz"
+ url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-0.15.1/apache-arrow-0.15.1.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
head "https://github.com/apache/arrow.git"
diff --git a/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb b/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
index 7605290f9be33..a280558146cd2 100644
--- a/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
+++ b/dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
@@ -19,7 +19,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.cgi?path=arrow/arrow-0.15.0/apache-arrow-0.15.0.tar.gz"
+ url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-0.15.1/apache-arrow-0.15.1.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
head "https://github.com/apache/arrow.git"
diff --git a/js/package.json b/js/package.json
index f721b14ece552..ed19eec284168 100644
--- a/js/package.json
+++ b/js/package.json
@@ -113,5 +113,5 @@
"engines": {
"node": ">=11.12"
},
- "version": "0.15.0"
+ "version": "0.15.1"
}
diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt
index 6b88916c20c03..e42faa6e21098 100755
--- a/matlab/CMakeLists.txt
+++ b/matlab/CMakeLists.txt
@@ -18,7 +18,7 @@
cmake_minimum_required(VERSION 3.2)
set(CMAKE_CXX_STANDARD 11)
-set(MLARROW_VERSION "0.15.0")
+set(MLARROW_VERSION "0.15.1")
string(REGEX MATCH
"^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")
diff --git a/python/setup.py b/python/setup.py
index 4a33cdb9ec1c6..8991888dbd8b5 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -518,7 +518,7 @@ def _move_shared_libs_unix(build_prefix, build_lib, lib_name):
# 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 = '0.15.0'
+default_version = '0.15.1'
if (not os.path.exists('../.git')
and not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
if os.path.exists('PKG-INFO'):
diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index 11aff440cc4e8..c6871e6b7aa03 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
Package: arrow
Title: Integration to 'Apache' 'Arrow'
-Version: 0.15.0
+Version: 0.15.1
Authors@R: c(
person("Romain", "Fran\u00e7ois", email = "romain@rstudio.com", role = c("aut"), comment = c(ORCID = "0000-0002-2444-4226")),
person("Jeroen", "Ooms", email = "jeroen@berkeley.edu", role = c("aut")),
diff --git a/r/NEWS.md b/r/NEWS.md
index a29491a8cd8ee..4cc9b0bf6793a 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,7 +17,7 @@
under the License.
-->
-# arrow 0.15.0
+# arrow 0.15.1
## Breaking changes
diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
index 77789c8db134f..5e66f0ef01aad 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 = "0.15.0"
+ VERSION = "0.15.1"
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 c29d49aec87b3..1d5890854dd9b 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 = "0.15.0"
+ VERSION = "0.15.1"
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 acdcaec3af088..1d9a0d55c5672 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 = "0.15.0"
+ VERSION = "0.15.1"
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 4d20496ca4f9f..0259c49d44a60 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 = "0.15.0"
+ VERSION = "0.15.1"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/ruby/red-plasma/lib/plasma/version.rb b/ruby/red-plasma/lib/plasma/version.rb
index 577bd568bba66..11532c6827479 100644
--- a/ruby/red-plasma/lib/plasma/version.rb
+++ b/ruby/red-plasma/lib/plasma/version.rb
@@ -16,7 +16,7 @@
# under the License.
module Plasma
- VERSION = "0.15.0"
+ VERSION = "0.15.1"
module Version
numbers, TAG = VERSION.split("-")
diff --git a/rust/arrow/Cargo.toml b/rust/arrow/Cargo.toml
index 49e09ed1d6c86..bf7cb717a60b3 100644
--- a/rust/arrow/Cargo.toml
+++ b/rust/arrow/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "arrow"
-version = "0.15.0"
+version = "0.15.1"
description = "Rust implementation of Apache Arrow"
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
diff --git a/rust/datafusion/Cargo.toml b/rust/datafusion/Cargo.toml
index 419a89b734642..926ab0e7034cf 100644
--- a/rust/datafusion/Cargo.toml
+++ b/rust/datafusion/Cargo.toml
@@ -18,7 +18,7 @@
[package]
name = "datafusion"
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
-version = "0.15.0"
+version = "0.15.1"
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
authors = ["Apache Arrow "]
@@ -44,8 +44,8 @@ cli = ["rustyline"]
[dependencies]
fnv = "1.0.3"
-arrow = { path = "../arrow", version = "0.15.0" }
-parquet = { path = "../parquet", version = "0.15.0" }
+arrow = { path = "../arrow", version = "0.15.1" }
+parquet = { path = "../parquet", version = "0.15.1" }
sqlparser = "0.2.0"
clap = "2.33.0"
prettytable-rs = "0.8.0"
diff --git a/rust/datafusion/README.md b/rust/datafusion/README.md
index 4229db9d46369..cd91b286061a7 100644
--- a/rust/datafusion/README.md
+++ b/rust/datafusion/README.md
@@ -29,7 +29,7 @@ Add this to your Cargo.toml:
```toml
[dependencies]
-datafusion = "0.15.0"
+datafusion = "0.15.1"
```
#### Use as a bin
diff --git a/rust/parquet/Cargo.toml b/rust/parquet/Cargo.toml
index 73dec59dc937d..38cf193390c9c 100644
--- a/rust/parquet/Cargo.toml
+++ b/rust/parquet/Cargo.toml
@@ -17,7 +17,7 @@
[package]
name = "parquet"
-version = "0.15.0"
+version = "0.15.1"
license = "Apache-2.0"
description = "Apache Parquet implementation in Rust"
homepage = "https://github.com/apache/arrow"
@@ -40,7 +40,7 @@ lz4 = "1.23"
zstd = "0.4"
chrono = "0.4"
num-bigint = "0.2"
-arrow = { path = "../arrow", version = "0.15.0" }
+arrow = { path = "../arrow", version = "0.15.1" }
[dev-dependencies]
lazy_static = "1"
diff --git a/rust/parquet/README.md b/rust/parquet/README.md
index dbd6492ea634c..6d31a3d846cdc 100644
--- a/rust/parquet/README.md
+++ b/rust/parquet/README.md
@@ -23,7 +23,7 @@
Add this to your Cargo.toml:
```toml
[dependencies]
-parquet = "0.15.0"
+parquet = "0.15.1"
```
and this to your crate root:
@@ -44,7 +44,7 @@ while let Some(record) = iter.next() {
println!("{}", record);
}
```
-See [crate documentation](https://docs.rs/crate/parquet/0.15.0) on available API.
+See [crate documentation](https://docs.rs/crate/parquet/0.15.1) on available API.
## Supported Parquet Version
- Parquet-format 2.4.0