Skip to content

Commit 82a374e

Browse files
committed
MINOR: [Release] Update versions for 23.0.1
1 parent c1ae37c commit 82a374e

File tree

23 files changed

+25
-25
lines changed

23 files changed

+25
-25
lines changed

c_glib/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ project(
3232
# * 22.04: 0.61.2
3333
# * 24.04: 1.3.2
3434
meson_version: '>=0.61.2',
35-
version: '23.0.0',
35+
version: '23.0.1',
3636
)
3737

3838
version = meson.project_version()

c_glib/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arrow-glib",
3-
"version-string": "23.0.0",
3+
"version-string": "23.0.1",
44
"$comment:dependencies": "We can enable gobject-introspection again once it's updated",
55
"dependencies": [
66
"glib",

ci/scripts/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
_realname=arrow
1919
pkgbase=mingw-w64-${_realname}
2020
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
21-
pkgver=23.0.0
21+
pkgver=23.0.1
2222
pkgrel=8000
2323
pkgdesc="Apache Arrow is a cross-language development platform for in-memory data (mingw-w64)"
2424
arch=("any")

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ if(POLICY CMP0170)
9696
cmake_policy(SET CMP0170 NEW)
9797
endif()
9898

99-
set(ARROW_VERSION "23.0.0")
99+
set(ARROW_VERSION "23.0.1")
100100

101101
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}")
102102

cpp/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ project(
1919
'arrow',
2020
'cpp',
2121
'c',
22-
version: '23.0.0',
22+
version: '23.0.1',
2323
license: 'Apache-2.0',
2424
meson_version: '>=1.3.0',
2525
default_options: ['c_std=c11', 'warning_level=2', 'cpp_std=c++20'],

cpp/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arrow",
3-
"version-string": "23.0.0",
3+
"version-string": "23.0.1",
44
"dependencies": [
55
"abseil",
66
{

dev/tasks/homebrew-formulae/apache-arrow-glib.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class ApacheArrowGlib < Formula
3030
desc "GLib bindings for Apache Arrow"
3131
homepage "https://arrow.apache.org/"
32-
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-23.0.0/apache-arrow-23.0.0.tar.gz"
32+
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-23.0.1/apache-arrow-23.0.1.tar.gz"
3333
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
3434
license "Apache-2.0"
3535
head "https://github.com/apache/arrow.git", branch: "main"

dev/tasks/homebrew-formulae/apache-arrow.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class ApacheArrow < Formula
3030
desc "Columnar in-memory analytics layer designed to accelerate big data"
3131
homepage "https://arrow.apache.org/"
32-
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-23.0.0/apache-arrow-23.0.0.tar.gz"
32+
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-23.0.1/apache-arrow-23.0.1.tar.gz"
3333
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
3434
license "Apache-2.0"
3535
head "https://github.com/apache/arrow.git", branch: "main"

matlab/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ endfunction()
100100

101101
set(CMAKE_CXX_STANDARD 20)
102102

103-
set(MLARROW_VERSION "23.0.0")
103+
set(MLARROW_VERSION "23.0.1")
104104
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")
105105

106106
project(mlarrow VERSION "${MLARROW_BASE_VERSION}")

python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ project(pyarrow)
2828
# which in turn meant that Py_GIL_DISABLED was not set.
2929
set(CMAKE_NO_SYSTEM_FROM_IMPORTED ON)
3030

31-
set(PYARROW_VERSION "23.0.0")
31+
set(PYARROW_VERSION "23.0.1")
3232
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" PYARROW_BASE_VERSION "${PYARROW_VERSION}")
3333

3434
# Generate SO version and full SO version

0 commit comments

Comments
 (0)