diff --git a/c_glib/meson.build b/c_glib/meson.build index 14f3a6225b4d7..eae8bbd030793 100644 --- a/c_glib/meson.build +++ b/c_glib/meson.build @@ -24,7 +24,7 @@ project('arrow-glib', 'c', 'cpp', 'cpp_std=c++11', ]) -version = '9.0.0-SNAPSHOT' +version = '9.0.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 428447d263843..deb68b7ee6eea 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=8.0.0.9000 +pkgver=9.0.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 945ff7b6f89ad..bca86d4c1878f 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -47,7 +47,7 @@ if(POLICY CMP0074) cmake_policy(SET CMP0074 NEW) endif() -set(ARROW_VERSION "9.0.0-SNAPSHOT") +set(ARROW_VERSION "9.0.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 8019c7395e8a4..24d61a2f917c4 100644 --- a/cpp/vcpkg.json +++ b/cpp/vcpkg.json @@ -1,6 +1,6 @@ { "name": "arrow", - "version-string": "9.0.0-SNAPSHOT", + "version-string": "9.0.0", "dependencies": [ "abseil", { diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props index 547fe6a8d8295..e21c18098667d 100644 --- a/csharp/Directory.Build.props +++ b/csharp/Directory.Build.props @@ -29,7 +29,7 @@ Apache Arrow library Copyright 2016-2019 The Apache Software Foundation The Apache Software Foundation - 9.0.0-SNAPSHOT + 9.0.0 diff --git a/dev/tasks/homebrew-formulae/apache-arrow-glib.rb b/dev/tasks/homebrew-formulae/apache-arrow-glib.rb index c8b9713cec3e0..aca67af221f79 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-9.0.0-SNAPSHOT/apache-arrow-9.0.0-SNAPSHOT.tar.gz" + url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-9.0.0/apache-arrow-9.0.0.tar.gz" sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28" license "Apache-2.0" head "https://github.com/apache/arrow.git" diff --git a/dev/tasks/homebrew-formulae/apache-arrow.rb b/dev/tasks/homebrew-formulae/apache-arrow.rb index 4908c22ed6494..ba3f32001c932 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-9.0.0-SNAPSHOT/apache-arrow-9.0.0-SNAPSHOT.tar.gz" + url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-9.0.0/apache-arrow-9.0.0.tar.gz" sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28" license "Apache-2.0" 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 dde994ab43396..6dfaaca02ad30 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.lua?path=arrow/arrow-8.0.0.9000/apache-arrow-8.0.0.9000.tar.gz" + url "https://www.apache.org/dyn/closer.lua?path=arrow/arrow-9.0.0/apache-arrow-9.0.0.tar.gz" sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28" head "https://github.com/apache/arrow.git" diff --git a/docs/source/_static/versions.json b/docs/source/_static/versions.json index 1738afbf23967..013df079ec224 100644 --- a/docs/source/_static/versions.json +++ b/docs/source/_static/versions.json @@ -1,12 +1,16 @@ [ { - "name": "9.0 (dev)", + "name": "10.0 (dev)", "version": "dev/" }, { - "name": "8.0 (stable)", + "name": "9.0 (stable)", "version": "" }, + { + "name": "8.0", + "version": "8.0/" + }, { "name": "7.0", "version": "7.0/" diff --git a/go/parquet/writer_properties.go b/go/parquet/writer_properties.go index 123cf212eb22b..fc548ffafe1ed 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 9.0.0-SNAPSHOT" + DefaultCreatedBy = "parquet-go version 9.0.0" DefaultRootName = "schema" ) diff --git a/java/adapter/avro/pom.xml b/java/adapter/avro/pom.xml index ac6eed6a191f4..c038f33eed6f7 100644 --- a/java/adapter/avro/pom.xml +++ b/java/adapter/avro/pom.xml @@ -16,7 +16,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 ../../pom.xml diff --git a/java/adapter/jdbc/pom.xml b/java/adapter/jdbc/pom.xml index 393ed0dddcda6..b04a774045b4f 100644 --- a/java/adapter/jdbc/pom.xml +++ b/java/adapter/jdbc/pom.xml @@ -16,7 +16,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 ../../pom.xml diff --git a/java/adapter/orc/pom.xml b/java/adapter/orc/pom.xml index 521686274675f..b4421b7ae6e9b 100644 --- a/java/adapter/orc/pom.xml +++ b/java/adapter/orc/pom.xml @@ -104,7 +104,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 ../../pom.xml diff --git a/java/algorithm/pom.xml b/java/algorithm/pom.xml index d4281f6464d3b..fa4d76aadf095 100644 --- a/java/algorithm/pom.xml +++ b/java/algorithm/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 arrow-algorithm Arrow Algorithms diff --git a/java/c/pom.xml b/java/c/pom.xml index 6d0632ea16584..93997164db924 100644 --- a/java/c/pom.xml +++ b/java/c/pom.xml @@ -13,7 +13,7 @@ arrow-java-root org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 4.0.0 diff --git a/java/compression/pom.xml b/java/compression/pom.xml index a394ac63727e1..102a2b2fe37c4 100644 --- a/java/compression/pom.xml +++ b/java/compression/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 arrow-compression Arrow Compression diff --git a/java/dataset/pom.xml b/java/dataset/pom.xml index 2727b1e2739d9..1f1f604bcfa97 100644 --- a/java/dataset/pom.xml +++ b/java/dataset/pom.xml @@ -15,7 +15,7 @@ arrow-java-root org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 4.0.0 diff --git a/java/flight/flight-core/pom.xml b/java/flight/flight-core/pom.xml index 28325e9bffba3..5f42ef4ba3379 100644 --- a/java/flight/flight-core/pom.xml +++ b/java/flight/flight-core/pom.xml @@ -14,7 +14,7 @@ arrow-flight org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 ../pom.xml diff --git a/java/flight/flight-grpc/pom.xml b/java/flight/flight-grpc/pom.xml index 5c113be8615d2..b347ceb3fadab 100644 --- a/java/flight/flight-grpc/pom.xml +++ b/java/flight/flight-grpc/pom.xml @@ -13,7 +13,7 @@ arrow-flight org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 ../pom.xml 4.0.0 diff --git a/java/flight/flight-integration-tests/pom.xml b/java/flight/flight-integration-tests/pom.xml index e676be979dbb3..38874d8a37711 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 - 9.0.0-SNAPSHOT + 9.0.0 ../pom.xml diff --git a/java/flight/flight-sql/pom.xml b/java/flight/flight-sql/pom.xml index 8af1fa7086278..4f4d5eac4c350 100644 --- a/java/flight/flight-sql/pom.xml +++ b/java/flight/flight-sql/pom.xml @@ -14,7 +14,7 @@ arrow-flight org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 ../pom.xml diff --git a/java/flight/pom.xml b/java/flight/pom.xml index 151bc5822158e..27b761dbb1276 100644 --- a/java/flight/pom.xml +++ b/java/flight/pom.xml @@ -15,7 +15,7 @@ arrow-java-root org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 4.0.0 diff --git a/java/format/pom.xml b/java/format/pom.xml index 865d08e4e242e..1bb562ee16015 100644 --- a/java/format/pom.xml +++ b/java/format/pom.xml @@ -15,7 +15,7 @@ arrow-java-root org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 arrow-format diff --git a/java/gandiva/pom.xml b/java/gandiva/pom.xml index 2d64b82b45bf9..bc94346ec8304 100644 --- a/java/gandiva/pom.xml +++ b/java/gandiva/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 org.apache.arrow.gandiva diff --git a/java/memory/memory-core/pom.xml b/java/memory/memory-core/pom.xml index 1a0e7f1d13153..1cd52ed998d1b 100644 --- a/java/memory/memory-core/pom.xml +++ b/java/memory/memory-core/pom.xml @@ -13,7 +13,7 @@ arrow-memory org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 4.0.0 diff --git a/java/memory/memory-netty/pom.xml b/java/memory/memory-netty/pom.xml index 3a8af2bb3b0dd..9fcf713c81e0c 100644 --- a/java/memory/memory-netty/pom.xml +++ b/java/memory/memory-netty/pom.xml @@ -13,7 +13,7 @@ arrow-memory org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 4.0.0 diff --git a/java/memory/memory-unsafe/pom.xml b/java/memory/memory-unsafe/pom.xml index 5a8ce2a20301e..77b5576b9161f 100644 --- a/java/memory/memory-unsafe/pom.xml +++ b/java/memory/memory-unsafe/pom.xml @@ -13,7 +13,7 @@ arrow-memory org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 4.0.0 diff --git a/java/memory/pom.xml b/java/memory/pom.xml index 7d39f44ac018a..9b1a48737cac3 100644 --- a/java/memory/pom.xml +++ b/java/memory/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 arrow-memory Arrow Memory diff --git a/java/performance/pom.xml b/java/performance/pom.xml index 0b6aab8fac1d5..a602dc173ce01 100644 --- a/java/performance/pom.xml +++ b/java/performance/pom.xml @@ -14,7 +14,7 @@ arrow-java-root org.apache.arrow - 9.0.0-SNAPSHOT + 9.0.0 arrow-performance jar @@ -74,7 +74,7 @@ org.apache.arrow arrow-algorithm - 9.0.0-SNAPSHOT + 9.0.0 test diff --git a/java/plasma/pom.xml b/java/plasma/pom.xml index 0608128bc2e94..a16b2ccc2a8f6 100644 --- a/java/plasma/pom.xml +++ b/java/plasma/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 arrow-plasma Arrow Plasma Client diff --git a/java/pom.xml b/java/pom.xml index 38ab4f9810f6b..0888ec02cf6e9 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -20,7 +20,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 pom Apache Arrow Java Root POM diff --git a/java/tools/pom.xml b/java/tools/pom.xml index a46548e7db143..3d91c03bb606e 100644 --- a/java/tools/pom.xml +++ b/java/tools/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 arrow-tools Arrow Tools diff --git a/java/vector/pom.xml b/java/vector/pom.xml index 8bf184a4a58e4..4421d559dace6 100644 --- a/java/vector/pom.xml +++ b/java/vector/pom.xml @@ -14,7 +14,7 @@ org.apache.arrow arrow-java-root - 9.0.0-SNAPSHOT + 9.0.0 arrow-vector Arrow Vectors diff --git a/js/package.json b/js/package.json index 80e581dd8a85a..d9efecced49d5 100644 --- a/js/package.json +++ b/js/package.json @@ -121,5 +121,5 @@ "engines": { "node": ">=12.0" }, - "version": "9.0.0-SNAPSHOT" + "version": "9.0.0" } diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt index 29163f47995f2..cb9e264bb3d01 100644 --- a/matlab/CMakeLists.txt +++ b/matlab/CMakeLists.txt @@ -189,7 +189,7 @@ endmacro() set(CMAKE_CXX_STANDARD 11) -set(MLARROW_VERSION "9.0.0-SNAPSHOT") +set(MLARROW_VERSION "9.0.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/setup.py b/python/setup.py index b572be1cee464..e840167b77a47 100755 --- a/python/setup.py +++ b/python/setup.py @@ -567,7 +567,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 = '9.0.0-SNAPSHOT' +default_version = '9.0.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 a7408d27d6548..091ff872292e2 100644 --- a/r/DESCRIPTION +++ b/r/DESCRIPTION @@ -1,6 +1,6 @@ Package: arrow Title: Integration to 'Apache' 'Arrow' -Version: 8.0.0.9000 +Version: 9.0.0 Authors@R: c( person("Neal", "Richardson", email = "neal@ursalabs.org", role = c("aut", "cre")), person("Ian", "Cook", email = "ianmcook@gmail.com", role = c("aut")), diff --git a/r/NEWS.md b/r/NEWS.md index c2ad7f86ddba6..119dc5ed8dec4 100644 --- a/r/NEWS.md +++ b/r/NEWS.md @@ -17,7 +17,7 @@ under the License. --> -# arrow 8.0.0.9000 +# arrow 9.0.0 ## Arrow dplyr queries diff --git a/r/pkgdown/assets/versions.json b/r/pkgdown/assets/versions.json index 1e54cbd21a48c..f1ddd85f055e3 100644 --- a/r/pkgdown/assets/versions.json +++ b/r/pkgdown/assets/versions.json @@ -1,12 +1,16 @@ [ { - "name": "8.0.0.9000 (dev)", + "name": "9.0.0.9000 (dev)", "version": "dev/" }, { - "name": "8.0.0 (release)", + "name": "9.0.0 (release)", "version": "" }, + { + "name": "8.0.0", + "version": "8.0/" + }, { "name": "7.0.0", "version": "7.0/" diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb index d65eec037199c..76aa9c3db4fc6 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.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 9df0d72993923..0da304b615413 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.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 2f27664b4e842..5b927aae4e621 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.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 a1fc6b8501669..8a6d96e0a8fdb 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.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 0b9d43e242dd9..33797fc35f782 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.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 ca2ff5473c28f..7dfef8e9b79d1 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.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 749a27746662d..f69d5283fe86b 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.0" 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 dbe6fe07c3b33..c34aa2ea861de 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 = "9.0.0-SNAPSHOT" + VERSION = "9.0.0" module Version numbers, TAG = VERSION.split("-")