Skip to content

Commit ba53748

Browse files
committed
MINOR: [Release] Update versions for 14.0.1
1 parent 529f376 commit ba53748

File tree

48 files changed

+58
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+58
-49
lines changed

c_glib/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ project('arrow-glib', 'c', 'cpp',
2424
'cpp_std=c++17',
2525
])
2626

27-
version = '14.0.0'
27+
version = '14.0.1'
2828
if version.endswith('-SNAPSHOT')
2929
version_numbers = version.split('-')[0].split('.')
3030
version_tag = version.split('-')[1]

ci/scripts/PKGBUILD

+1-1
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=14.0.0
21+
pkgver=14.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ if(POLICY CMP0135)
7171
cmake_policy(SET CMP0135 NEW)
7272
endif()
7373

74-
set(ARROW_VERSION "14.0.0")
74+
set(ARROW_VERSION "14.0.1")
7575

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

cpp/vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arrow",
3-
"version-string": "14.0.0",
3+
"version-string": "14.0.1",
44
"dependencies": [
55
"abseil",
66
{

csharp/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<Product>Apache Arrow library</Product>
3030
<Copyright>Copyright 2016-2019 The Apache Software Foundation</Copyright>
3131
<Company>The Apache Software Foundation</Company>
32-
<Version>14.0.0</Version>
32+
<Version>14.0.1</Version>
3333
</PropertyGroup>
3434

3535
<PropertyGroup>

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

+1-1
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-14.0.0/apache-arrow-14.0.0.tar.gz"
32+
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-14.0.1/apache-arrow-14.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

+1-1
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-14.0.0/apache-arrow-14.0.0.tar.gz"
32+
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-14.0.1/apache-arrow-14.0.1.tar.gz"
3333
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
3434
license "Apache-2.0"
3535
head "https://github.com/apache/arrow.git", branch: "main"

docs/source/_static/versions.json

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
"url": "https://arrow.apache.org/docs/",
1111
"preferred": true
1212
},
13+
{
14+
"name": "14.0",
15+
"version": "14.0/",
16+
"url": "https://arrow.apache.org/docs/14.0/"
17+
},
1318
{
1419
"name": "13.0",
1520
"version": "13.0/",

go/arrow/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To build with tinygo include the noasm build tag.
3636
*/
3737
package arrow
3838

39-
const PkgVersion = "14.0.0"
39+
const PkgVersion = "14.0.1"
4040

4141
//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
4242
//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

go/parquet/writer_properties.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const (
4646
DefaultStatsEnabled = true
4747
// If the stats are larger than 4K the writer will skip writing them out anyways.
4848
DefaultMaxStatsSize int64 = 4096
49-
DefaultCreatedBy = "parquet-go version 14.0.0"
49+
DefaultCreatedBy = "parquet-go version 14.0.1"
5050
DefaultRootName = "schema"
5151
)
5252

java/adapter/avro/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.apache.arrow</groupId>
1818
<artifactId>arrow-java-root</artifactId>
19-
<version>14.0.0</version>
19+
<version>14.0.1</version>
2020
<relativePath>../../pom.xml</relativePath>
2121
</parent>
2222

java/adapter/jdbc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<groupId>org.apache.arrow</groupId>
1818
<artifactId>arrow-java-root</artifactId>
19-
<version>14.0.0</version>
19+
<version>14.0.1</version>
2020
<relativePath>../../pom.xml</relativePath>
2121
</parent>
2222

java/adapter/orc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
<parent>
115115
<groupId>org.apache.arrow</groupId>
116116
<artifactId>arrow-java-root</artifactId>
117-
<version>14.0.0</version>
117+
<version>14.0.1</version>
118118
<relativePath>../../pom.xml</relativePath>
119119
</parent>
120120

java/algorithm/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.arrow</groupId>
1616
<artifactId>arrow-java-root</artifactId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919
<artifactId>arrow-algorithm</artifactId>
2020
<name>Arrow Algorithms</name>

java/c/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<artifactId>arrow-java-root</artifactId>
1515
<groupId>org.apache.arrow</groupId>
16-
<version>14.0.0</version>
16+
<version>14.0.1</version>
1717
</parent>
1818
<modelVersion>4.0.0</modelVersion>
1919

java/compression/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.arrow</groupId>
1616
<artifactId>arrow-java-root</artifactId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919
<artifactId>arrow-compression</artifactId>
2020
<name>Arrow Compression</name>

java/dataset/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<artifactId>arrow-java-root</artifactId>
1717
<groupId>org.apache.arrow</groupId>
18-
<version>14.0.0</version>
18+
<version>14.0.1</version>
1919
</parent>
2020
<modelVersion>4.0.0</modelVersion>
2121

java/flight/flight-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>arrow-flight</artifactId>
1616
<groupId>org.apache.arrow</groupId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020

java/flight/flight-grpc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<artifactId>arrow-flight</artifactId>
1515
<groupId>org.apache.arrow</groupId>
16-
<version>14.0.0</version>
16+
<version>14.0.1</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919
<modelVersion>4.0.0</modelVersion>

java/flight/flight-integration-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<artifactId>arrow-flight</artifactId>
1717
<groupId>org.apache.arrow</groupId>
18-
<version>14.0.0</version>
18+
<version>14.0.1</version>
1919
<relativePath>../pom.xml</relativePath>
2020
</parent>
2121

java/flight/flight-sql-jdbc-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<artifactId>arrow-flight</artifactId>
1818
<groupId>org.apache.arrow</groupId>
19-
<version>14.0.0</version>
19+
<version>14.0.1</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222
<modelVersion>4.0.0</modelVersion>

java/flight/flight-sql-jdbc-driver/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<parent>
1717
<artifactId>arrow-flight</artifactId>
1818
<groupId>org.apache.arrow</groupId>
19-
<version>14.0.0</version>
19+
<version>14.0.1</version>
2020
<relativePath>../pom.xml</relativePath>
2121
</parent>
2222
<modelVersion>4.0.0</modelVersion>

java/flight/flight-sql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>arrow-flight</artifactId>
1616
<groupId>org.apache.arrow</groupId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
<relativePath>../pom.xml</relativePath>
1919
</parent>
2020

java/flight/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<artifactId>arrow-java-root</artifactId>
1717
<groupId>org.apache.arrow</groupId>
18-
<version>14.0.0</version>
18+
<version>14.0.1</version>
1919
</parent>
2020
<modelVersion>4.0.0</modelVersion>
2121

java/format/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<artifactId>arrow-java-root</artifactId>
1717
<groupId>org.apache.arrow</groupId>
18-
<version>14.0.0</version>
18+
<version>14.0.1</version>
1919
</parent>
2020

2121
<artifactId>arrow-format</artifactId>

java/gandiva/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.arrow</groupId>
1616
<artifactId>arrow-java-root</artifactId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919

2020
<groupId>org.apache.arrow.gandiva</groupId>

java/memory/memory-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<artifactId>arrow-memory</artifactId>
1515
<groupId>org.apache.arrow</groupId>
16-
<version>14.0.0</version>
16+
<version>14.0.1</version>
1717
</parent>
1818
<modelVersion>4.0.0</modelVersion>
1919

java/memory/memory-netty/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<artifactId>arrow-memory</artifactId>
1515
<groupId>org.apache.arrow</groupId>
16-
<version>14.0.0</version>
16+
<version>14.0.1</version>
1717
</parent>
1818
<modelVersion>4.0.0</modelVersion>
1919

java/memory/memory-unsafe/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<artifactId>arrow-memory</artifactId>
1515
<groupId>org.apache.arrow</groupId>
16-
<version>14.0.0</version>
16+
<version>14.0.1</version>
1717
</parent>
1818
<modelVersion>4.0.0</modelVersion>
1919

java/memory/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.arrow</groupId>
1616
<artifactId>arrow-java-root</artifactId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919
<artifactId>arrow-memory</artifactId>
2020
<name>Arrow Memory</name>

java/performance/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<artifactId>arrow-java-root</artifactId>
1616
<groupId>org.apache.arrow</groupId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919
<artifactId>arrow-performance</artifactId>
2020
<packaging>jar</packaging>
@@ -74,7 +74,7 @@
7474
<dependency>
7575
<groupId>org.apache.arrow</groupId>
7676
<artifactId>arrow-algorithm</artifactId>
77-
<version>14.0.0</version>
77+
<version>14.0.1</version>
7878
<scope>test</scope>
7979
</dependency>
8080
</dependencies>

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>org.apache.arrow</groupId>
2222
<artifactId>arrow-java-root</artifactId>
23-
<version>14.0.0</version>
23+
<version>14.0.1</version>
2424
<packaging>pom</packaging>
2525

2626
<name>Apache Arrow Java Root POM</name>

java/tools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.arrow</groupId>
1616
<artifactId>arrow-java-root</artifactId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919
<artifactId>arrow-tools</artifactId>
2020
<name>Arrow Tools</name>

java/vector/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.apache.arrow</groupId>
1616
<artifactId>arrow-java-root</artifactId>
17-
<version>14.0.0</version>
17+
<version>14.0.1</version>
1818
</parent>
1919
<artifactId>arrow-vector</artifactId>
2020
<name>Arrow Vectors</name>

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@
121121
"engines": {
122122
"node": ">=12.0"
123123
},
124-
"version": "14.0.0"
124+
"version": "14.0.1"
125125
}

matlab/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ endfunction()
9494

9595
set(CMAKE_CXX_STANDARD 17)
9696

97-
set(MLARROW_VERSION "14.0.0")
97+
set(MLARROW_VERSION "14.0.1")
9898
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")
9999

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

python/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
cmake_minimum_required(VERSION 3.16)
2222
project(pyarrow)
2323

24-
set(PYARROW_VERSION "14.0.0")
24+
set(PYARROW_VERSION "14.0.1")
2525
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" PYARROW_BASE_VERSION "${PYARROW_VERSION}")
2626

2727
# Running from a Python sdist tarball

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def get_outputs(self):
407407

408408
# If the event of not running from a git clone (e.g. from a git archive
409409
# or a Python sdist), see if we can set the version number ourselves
410-
default_version = '14.0.0'
410+
default_version = '14.0.1'
411411
if (not os.path.exists('../.git') and
412412
not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
413413
os.environ['SETUPTOOLS_SCM_PRETEND_VERSION'] = \

r/DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: arrow
22
Title: Integration to 'Apache' 'Arrow'
3-
Version: 14.0.0
3+
Version: 14.0.1
44
Authors@R: c(
55
person("Neal", "Richardson", email = "[email protected]", role = c("aut")),
66
person("Ian", "Cook", email = "[email protected]", role = c("aut")),

r/NEWS.md

+1-1

r/pkgdown/assets/versions.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[
22
{
3-
"name": "14.0.0.9000 (dev)",
3+
"name": "14.0.1.9000 (dev)",
44
"version": "dev/"
55
},
66
{
7-
"name": "14.0.0 (release)",
7+
"name": "14.0.1 (release)",
88
"version": ""
99
},
10+
{
11+
"name": "14.0.0",
12+
"version": "14.0/"
13+
},
1014
{
1115
"name": "13.0.0.1",
1216
"version": "13.0/"

ruby/red-arrow-cuda/lib/arrow-cuda/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# under the License.
1717

1818
module ArrowCUDA
19-
VERSION = "14.0.0"
19+
VERSION = "14.0.1"
2020

2121
module Version
2222
numbers, TAG = VERSION.split("-")

0 commit comments

Comments
 (0)