diff --git a/CHANGELOG.md b/CHANGELOG.md
index e10537d4d85..d163a9aa630 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,50 @@
+# Apache Arrow 16.1.0 (2024-05-09)
+
+## Bug Fixes
+
+* [GH-40069](https://github.com/apache/arrow/issues/40069) - [C++] Make scalar scratch space immutable after initialization (#40237)
+* [GH-40407](https://github.com/apache/arrow/issues/40407) - [JS] Fix string coercion in MapRowProxyHandler.ownKeys (#40408)
+* [GH-40563](https://github.com/apache/arrow/issues/40563) - [Go] Unable to JSON marshal float64 arrays which contain a NaN value (#41109)
+* [GH-41133](https://github.com/apache/arrow/issues/41133) - [Benchmarking] Build benchmarks in benchmarks.env (#40925)
+* [GH-41137](https://github.com/apache/arrow/issues/41137) - [C#] Fix DenseUnionArray IsNull/Valid (#41138)
+* [GH-41140](https://github.com/apache/arrow/issues/41140) - [C#] Account for offset and length in union arrays (#41165)
+* [GH-41238](https://github.com/apache/arrow/issues/41238) - [Release] Use UTF-8 as the default encoding to upload binary (#41242)
+* [GH-41280](https://github.com/apache/arrow/issues/41280) - [Release][Java] Make Maven version detection more robust (#41281)
+* [GH-41302](https://github.com/apache/arrow/issues/41302) - [C#][Integration] Fix writing list and binary arrays with zero length offsets to IPC format (#41303)
+* [GH-41333](https://github.com/apache/arrow/issues/41333) - [C++][CMake] Prefer protobuf-config.cmake to FindProtobuf.cmake (#41360)
+* [GH-41369](https://github.com/apache/arrow/issues/41369) - [CI][GLib] Don't use /usr/local on macOS (#41387)
+* [GH-41370](https://github.com/apache/arrow/issues/41370) - [CI][MATLAB] MATLAB macOS CI workflow fails because of `macos-latest` change to `macos-14` (#41384)
+* [GH-41397](https://github.com/apache/arrow/issues/41397) - [C\#] Tests fail on MacOS arm64 with a stack overflow
+* [GH-41398](https://github.com/apache/arrow/issues/41398) - [R][CI] Windows job failing after R 4.4 release (#41409)
+* [GH-41407](https://github.com/apache/arrow/issues/41407) - [C++] Use static method to fill scalar scratch space to prevent ub (#41421)
+* [GH-41431](https://github.com/apache/arrow/issues/41431) - [C++][Parquet][Dataset] Fix repeated scan on encrypted dataset (#41550)
+* [GH-41462](https://github.com/apache/arrow/issues/41462) - [CI] Temporary pin azurite to v3.29.0 (#41501)
+* [GH-41463](https://github.com/apache/arrow/issues/41463) - [C++] Skip TestConcurrentFillFromScalar for platforms without threading support (#41461)
+* [GH-41562](https://github.com/apache/arrow/issues/41562) - [C++][Parquet] Decoding: Fix num_value handling in ByteStreamSplitDecoder (#41565)
+* [GH-41566](https://github.com/apache/arrow/issues/41566) - [CI][Packaging] macOS wheel for Catalina fails to build on macOS arm64 (#41567)
+* [GH-41577](https://github.com/apache/arrow/issues/41577) - [Java][Packaging] Add org.apache.arrow.memory.core to --add-opens=java.base/java.nio
+* [GH-41594](https://github.com/apache/arrow/issues/41594) - [Go] Support reading `date64` type & properly validate list-like types (#41595)
+
+
+## New Features and Improvements
+
+* [GH-39131](https://github.com/apache/arrow/issues/39131) - [JS] Add at() for array like types (#40730)
+* [GH-39482](https://github.com/apache/arrow/issues/39482) - [JS] Refactor imports (#39483)
+* [GH-39664](https://github.com/apache/arrow/issues/39664) - [C++][Acero] Ensure Acero benchmarks present a metric for identifying throughput (#40884)
+* [GH-40517](https://github.com/apache/arrow/issues/40517) - [C#] Fix writing sliced arrays to IPC format (#41197)
+* [GH-40959](https://github.com/apache/arrow/issues/40959) - [JS] Store Timestamps in 64 bits (#40960)
+* [GH-40989](https://github.com/apache/arrow/issues/40989) - [JS] Update dependencies (#40990)
+* [GH-41136](https://github.com/apache/arrow/issues/41136) - [C#] Recompute null count for sliced arrays on demand (#41144)
+* [GH-41225](https://github.com/apache/arrow/issues/41225) - [C#] Slice value buffers when writing sliced list or binary arrays in IPC format (#41230)
+* [GH-41231](https://github.com/apache/arrow/issues/41231) - [C#] Slice values array when writing a sliced list view array to IPC format (#41255)
+* [GH-41247](https://github.com/apache/arrow/issues/41247) - [Release] Use LC_ALL in binary upload scripts (#41248)
+* [GH-41353](https://github.com/apache/arrow/issues/41353) - [C++] Define bit_width and byte_width of ExtensionType in terms of the storage type (#41354)
+* [GH-41402](https://github.com/apache/arrow/issues/41402) - [CI][R] Update our backwards compatibility CI any other R 4.4 cleanups (#41403)
+* [GH-41405](https://github.com/apache/arrow/issues/41405) - [Release][Docs][GLib] Use Sphinx based GLib front page (#41406)
+
+
+
# Apache Arrow 16.0.0 (2024-04-16)
## Bug Fixes
diff --git a/c_glib/meson.build b/c_glib/meson.build
index 2022e389d18..70cf166b06a 100644
--- a/c_glib/meson.build
+++ b/c_glib/meson.build
@@ -37,7 +37,7 @@ project('arrow-glib', 'c', 'cpp',
# * 22.04: 0.61.2
meson_version: '>=0.53.2')
-version = '16.0.0'
+version = '16.1.0'
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 925a77ec50f..c2cc7e34b0a 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=16.0.0
+pkgver=16.1.0
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 941f5dbda73..f5c90c43a44 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 "16.0.0")
+set(ARROW_VERSION "16.1.0")
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 62b0b4999cc..376ca013cb1 100644
--- a/cpp/vcpkg.json
+++ b/cpp/vcpkg.json
@@ -1,6 +1,6 @@
{
"name": "arrow",
- "version-string": "16.0.0",
+ "version-string": "16.1.0",
"dependencies": [
"abseil",
{
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index 515ae14068d..95ade7ec4d6 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -29,7 +29,7 @@
Apache Arrow library
Copyright 2016-2024 The Apache Software Foundation
The Apache Software Foundation
- 16.0.0
+ 16.1.0
diff --git a/dev/tasks/homebrew-formulae/apache-arrow-glib.rb b/dev/tasks/homebrew-formulae/apache-arrow-glib.rb
index 1382f7069fb..f5995467f7e 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-16.0.0/apache-arrow-16.0.0.tar.gz"
+ url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-16.1.0/apache-arrow-16.1.0.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 fb201db8bff..d5e19e382a8 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-16.0.0/apache-arrow-16.0.0.tar.gz"
+ url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-16.1.0/apache-arrow-16.1.0.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 1486738f016..0d08b0bf287 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 (16.1.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Raúl Cumplido Thu, 09 May 2024 07:21:21 -0000
+
apache-arrow-apt-source (16.0.0-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 676c9e0d16d..f0eb785dd6b 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
+* Thu May 09 2024 Raúl Cumplido - 16.1.0-1
+- New upstream release.
+
* Tue Apr 16 2024 Raúl Cumplido - 16.0.0-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 1cb60af4691..620e9d192e5 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 (16.1.0-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Raúl Cumplido Thu, 09 May 2024 07:21:21 -0000
+
apache-arrow (16.0.0-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 3ede1814b86..c6148e92605 100644
--- a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
+++ b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in
@@ -881,6 +881,9 @@ Documentation for Apache Parquet GLib.
%endif
%changelog
+* Thu May 09 2024 Raúl Cumplido - 16.1.0-1
+- New upstream release.
+
* Tue Apr 16 2024 Raúl Cumplido - 16.0.0-1
- New upstream release.
diff --git a/docs/source/_static/versions.json b/docs/source/_static/versions.json
index f8ff19095b3..e879fc69138 100644
--- a/docs/source/_static/versions.json
+++ b/docs/source/_static/versions.json
@@ -5,11 +5,16 @@
"url": "https://arrow.apache.org/docs/dev/"
},
{
- "name": "16.0 (stable)",
+ "name": "16.1 (stable)",
"version": "",
"url": "https://arrow.apache.org/docs/",
"preferred": true
},
+ {
+ "name": "16.0",
+ "version": "16.0/",
+ "url": "https://arrow.apache.org/docs/16.0/"
+ },
{
"name": "15.0",
"version": "15.0/",
diff --git a/go/arrow/doc.go b/go/arrow/doc.go
index 76bdfeaa5be..339ff0c0e7e 100644
--- a/go/arrow/doc.go
+++ b/go/arrow/doc.go
@@ -34,7 +34,7 @@ To build with tinygo include the noasm build tag.
*/
package arrow
-const PkgVersion = "16.0.0"
+const PkgVersion = "16.1.0"
//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 6bd89895f15..bf097c93819 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 16.0.0"
+ DefaultCreatedBy = "parquet-go version 16.1.0"
DefaultRootName = "schema"
)
diff --git a/java/adapter/avro/pom.xml b/java/adapter/avro/pom.xml
index 2e016153918..8aca56f366c 100644
--- a/java/adapter/avro/pom.xml
+++ b/java/adapter/avro/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
../../pom.xml
diff --git a/java/adapter/jdbc/pom.xml b/java/adapter/jdbc/pom.xml
index 81237825b76..6431afe0522 100644
--- a/java/adapter/jdbc/pom.xml
+++ b/java/adapter/jdbc/pom.xml
@@ -16,7 +16,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
../../pom.xml
diff --git a/java/adapter/orc/pom.xml b/java/adapter/orc/pom.xml
index 699bf4ece5b..037eb327ed2 100644
--- a/java/adapter/orc/pom.xml
+++ b/java/adapter/orc/pom.xml
@@ -115,7 +115,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
../../pom.xml
diff --git a/java/algorithm/pom.xml b/java/algorithm/pom.xml
index 3ffc5c2d8f1..359d27b4634 100644
--- a/java/algorithm/pom.xml
+++ b/java/algorithm/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
arrow-algorithm
Arrow Algorithms
diff --git a/java/bom/pom.xml b/java/bom/pom.xml
index 8f87e549a4e..1adda8debdc 100644
--- a/java/bom/pom.xml
+++ b/java/bom/pom.xml
@@ -20,7 +20,7 @@
org.apache.arrow
arrow-bom
- 16.0.0
+ 16.1.0
pom
Arrow Bill of Materials
Arrow Bill of Materials
diff --git a/java/c/pom.xml b/java/c/pom.xml
index 62b1712eb6c..a2ce4eb31e4 100644
--- a/java/c/pom.xml
+++ b/java/c/pom.xml
@@ -13,7 +13,7 @@
arrow-java-root
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/compression/pom.xml b/java/compression/pom.xml
index 30bbcd2f8be..0f8e8f78d22 100644
--- a/java/compression/pom.xml
+++ b/java/compression/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
arrow-compression
Arrow Compression
diff --git a/java/dataset/pom.xml b/java/dataset/pom.xml
index 40cff06405e..3753ea5bf2e 100644
--- a/java/dataset/pom.xml
+++ b/java/dataset/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/flight/flight-core/pom.xml b/java/flight/flight-core/pom.xml
index 62404d27434..404a608a60f 100644
--- a/java/flight/flight-core/pom.xml
+++ b/java/flight/flight-core/pom.xml
@@ -14,7 +14,7 @@
arrow-flight
org.apache.arrow
- 16.0.0
+ 16.1.0
../pom.xml
diff --git a/java/flight/flight-integration-tests/pom.xml b/java/flight/flight-integration-tests/pom.xml
index 07e4e449add..34cfeba8436 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
- 16.0.0
+ 16.1.0
../pom.xml
diff --git a/java/flight/flight-sql-jdbc-core/pom.xml b/java/flight/flight-sql-jdbc-core/pom.xml
index 9d3a925ac37..cfda23a94c3 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
- 16.0.0
+ 16.1.0
../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 e872a90e76c..c7123c3ea5e 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
- 16.0.0
+ 16.1.0
../pom.xml
4.0.0
diff --git a/java/flight/flight-sql/pom.xml b/java/flight/flight-sql/pom.xml
index 45221ac45c7..ea2422a3c9c 100644
--- a/java/flight/flight-sql/pom.xml
+++ b/java/flight/flight-sql/pom.xml
@@ -14,7 +14,7 @@
arrow-flight
org.apache.arrow
- 16.0.0
+ 16.1.0
../pom.xml
diff --git a/java/flight/pom.xml b/java/flight/pom.xml
index 593b25b60e9..2defac44a12 100644
--- a/java/flight/pom.xml
+++ b/java/flight/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/format/pom.xml b/java/format/pom.xml
index 134bef41bea..adc15aadef6 100644
--- a/java/format/pom.xml
+++ b/java/format/pom.xml
@@ -15,7 +15,7 @@
arrow-java-root
org.apache.arrow
- 16.0.0
+ 16.1.0
arrow-format
diff --git a/java/gandiva/pom.xml b/java/gandiva/pom.xml
index 6903fc90468..5b3949bfc18 100644
--- a/java/gandiva/pom.xml
+++ b/java/gandiva/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
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 c846e5a7a1b..4b8d5e447a5 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
- 16.0.0
+ 16.1.0
module-info-compiler-maven-plugin
maven-plugin
diff --git a/java/maven/pom.xml b/java/maven/pom.xml
index a88ab1ea8c4..c4fe48b6f12 100644
--- a/java/maven/pom.xml
+++ b/java/maven/pom.xml
@@ -17,7 +17,7 @@
-->
org.apache.arrow.maven.plugins
arrow-maven-plugins
- 16.0.0
+ 16.1.0
Arrow Maven Plugins
pom
diff --git a/java/memory/memory-core/pom.xml b/java/memory/memory-core/pom.xml
index 822973bf14e..e997e3c3114 100644
--- a/java/memory/memory-core/pom.xml
+++ b/java/memory/memory-core/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/memory/memory-netty-buffer-patch/pom.xml b/java/memory/memory-netty-buffer-patch/pom.xml
index 40658a28964..c389c6bb4f5 100644
--- a/java/memory/memory-netty-buffer-patch/pom.xml
+++ b/java/memory/memory-netty-buffer-patch/pom.xml
@@ -15,7 +15,7 @@
arrow-memory
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/memory/memory-netty/pom.xml b/java/memory/memory-netty/pom.xml
index b7e39e98ad1..844f90b2d20 100644
--- a/java/memory/memory-netty/pom.xml
+++ b/java/memory/memory-netty/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/memory/memory-unsafe/pom.xml b/java/memory/memory-unsafe/pom.xml
index d0aa6100584..fdc55ac7698 100644
--- a/java/memory/memory-unsafe/pom.xml
+++ b/java/memory/memory-unsafe/pom.xml
@@ -13,7 +13,7 @@
arrow-memory
org.apache.arrow
- 16.0.0
+ 16.1.0
4.0.0
diff --git a/java/memory/pom.xml b/java/memory/pom.xml
index d3c492c17df..9f98bc45d7d 100644
--- a/java/memory/pom.xml
+++ b/java/memory/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
arrow-memory
Arrow Memory
diff --git a/java/performance/pom.xml b/java/performance/pom.xml
index 9162cba5ca6..5ca91617c2c 100644
--- a/java/performance/pom.xml
+++ b/java/performance/pom.xml
@@ -14,7 +14,7 @@
arrow-java-root
org.apache.arrow
- 16.0.0
+ 16.1.0
arrow-performance
jar
diff --git a/java/pom.xml b/java/pom.xml
index 3148d430411..482fcd5c1aa 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -20,7 +20,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
pom
Apache Arrow Java Root POM
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index a8ed6ffcc17..3c9cf7c52e9 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
arrow-tools
Arrow Tools
diff --git a/java/vector/pom.xml b/java/vector/pom.xml
index 089ad802aed..70f7ba9c041 100644
--- a/java/vector/pom.xml
+++ b/java/vector/pom.xml
@@ -14,7 +14,7 @@
org.apache.arrow
arrow-java-root
- 16.0.0
+ 16.1.0
arrow-vector
Arrow Vectors
diff --git a/js/package.json b/js/package.json
index 37c1a3427be..85c160002aa 100644
--- a/js/package.json
+++ b/js/package.json
@@ -121,5 +121,5 @@
"engines": {
"node": ">=12.0"
},
- "version": "16.0.0"
+ "version": "16.1.0"
}
diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt
index 6a80dc1cee6..c1048532de7 100644
--- a/matlab/CMakeLists.txt
+++ b/matlab/CMakeLists.txt
@@ -94,7 +94,7 @@ endfunction()
set(CMAKE_CXX_STANDARD 17)
-set(MLARROW_VERSION "16.0.0")
+set(MLARROW_VERSION "16.1.0")
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 f59019fa3ab..9db3eb90223 100644
--- a/python/CMakeLists.txt
+++ b/python/CMakeLists.txt
@@ -21,7 +21,7 @@
cmake_minimum_required(VERSION 3.16)
project(pyarrow)
-set(PYARROW_VERSION "16.0.0")
+set(PYARROW_VERSION "16.1.0")
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 5f4f0567db0..b29af8449f4 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -414,7 +414,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 = '16.0.0'
+default_version = '16.1.0'
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 9448d79299a..93bd591ad77 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
Package: arrow
Title: Integration to 'Apache' 'Arrow'
-Version: 16.0.0
+Version: 16.1.0
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 62207da50b6..5cbe57abf3a 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,7 +17,7 @@
under the License.
-->
-# arrow 16.0.0
+# arrow 16.1.0
# arrow 15.0.2
diff --git a/r/pkgdown/assets/versions.json b/r/pkgdown/assets/versions.json
index 75d179f2405..43f0b3fac62 100644
--- a/r/pkgdown/assets/versions.json
+++ b/r/pkgdown/assets/versions.json
@@ -1,10 +1,10 @@
[
{
- "name": "16.0.0.9000 (dev)",
+ "name": "16.1.0.9000 (dev)",
"version": "dev/"
},
{
- "name": "16.0.0 (release)",
+ "name": "16.1.0 (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 1ef10ea6c16..a4f9fd30536 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 = "16.0.0"
+ VERSION = "16.1.0"
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 f0996ac63b2..1867de1ef3b 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 = "16.0.0"
+ VERSION = "16.1.0"
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 71ef49a6277..d2e1df89b3a 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 = "16.0.0"
+ VERSION = "16.1.0"
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 d3de1d3e7ba..19658b0d0a5 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 = "16.0.0"
+ VERSION = "16.1.0"
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 80ac16bc19d..4d24d04c827 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 = "16.0.0"
+ VERSION = "16.1.0"
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 740d7ed1be2..13c493cc571 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 = "16.0.0"
+ VERSION = "16.1.0"
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 103c98741e3..a4daf890028 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 = "16.0.0"
+ VERSION = "16.1.0"
module Version
numbers, TAG = VERSION.split("-")