Skip to content

Commit ac2d207

Browse files
committed
MINOR: [Release] Update versions for 13.0.0
1 parent 729cfa7 commit ac2d207

File tree

49 files changed

+60
-52
lines changed

Some content is hidden

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

49 files changed

+60
-52
lines changed

c_glib/meson.build

Lines changed: 1 addition & 1 deletion
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 = '13.0.0-SNAPSHOT'
27+
version = '13.0.0'
2828
if version.endswith('-SNAPSHOT')
2929
version_numbers = version.split('-')[0].split('.')
3030
version_tag = version.split('-')[1]

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=12.0.1.9000
21+
pkgver=13.0.0
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
@@ -47,7 +47,7 @@ cmake_policy(SET CMP0074 NEW)
4747
# https://cmake.org/cmake/help/latest/policy/CMP0091.html
4848
cmake_policy(SET CMP0091 NEW)
4949

50-
set(ARROW_VERSION "13.0.0-SNAPSHOT")
50+
set(ARROW_VERSION "13.0.0")
5151

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

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": "13.0.0-SNAPSHOT",
3+
"version-string": "13.0.0",
44
"dependencies": [
55
"abseil",
66
{

csharp/Directory.Build.props

Lines changed: 1 addition & 1 deletion
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>13.0.0-SNAPSHOT</Version>
32+
<Version>13.0.0</Version>
3333
</PropertyGroup>
3434

3535
<PropertyGroup>

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class ApacheArrow < Formula
2020
desc "Columnar in-memory analytics layer designed to accelerate big data"
2121
homepage "https://arrow.apache.org/"
22-
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-12.0.1.9000/apache-arrow-12.0.1.9000.tar.gz"
22+
url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-13.0.0/apache-arrow-13.0.0.tar.gz"
2323
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
2424
head "https://github.com/apache/arrow.git", branch: "main"
2525

docs/source/_static/versions.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
[
22
{
3-
"name": "13.0 (dev)",
3+
"name": "14.0 (dev)",
44
"version": "dev/"
55
},
66
{
7-
"name": "12.0 (stable)",
7+
"name": "13.0 (stable)",
88
"version": ""
99
},
1010
{
1111
"name": "12.0",
1212
"version": "12.0/"
1313
},
14+
{
15+
"name": "12.0",
16+
"version": "12.0/"
17+
},
1418
{
1519
"name": "11.0",
1620
"version": "11.0/"

go/arrow/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To build with tinygo include the noasm build tag.
3737
*/
3838
package arrow
3939

40-
const PkgVersion = "13.0.0-SNAPSHOT"
40+
const PkgVersion = "13.0.0"
4141

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

0 commit comments

Comments
 (0)