This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to annotated tag apache-arrow-3.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit b93da74b7299e1abf97d870368863ec6d6361ba8
Author: Krisztián Szűcs <[email protected]>
AuthorDate: Fri Jan 15 17:52:02 2021 +0100

    [Release] Update versions for 3.0.0
---
 c_glib/configure.ac                                  | 2 +-
 c_glib/meson.build                                   | 2 +-
 ci/scripts/PKGBUILD                                  | 2 +-
 cpp/CMakeLists.txt                                   | 2 +-
 csharp/Directory.Build.props                         | 2 +-
 dev/tasks/homebrew-formulae/apache-arrow.rb          | 2 +-
 dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb | 2 +-
 js/package.json                                      | 2 +-
 matlab/CMakeLists.txt                                | 2 +-
 python/setup.py                                      | 2 +-
 r/DESCRIPTION                                        | 2 +-
 r/NEWS.md                                            | 2 +-
 ruby/red-arrow-cuda/lib/arrow-cuda/version.rb        | 2 +-
 ruby/red-arrow-dataset/lib/arrow-dataset/version.rb  | 2 +-
 ruby/red-arrow/lib/arrow/version.rb                  | 2 +-
 ruby/red-gandiva/lib/gandiva/version.rb              | 2 +-
 ruby/red-parquet/lib/parquet/version.rb              | 2 +-
 ruby/red-plasma/lib/plasma/version.rb                | 2 +-
 rust/arrow-flight/Cargo.toml                         | 4 ++--
 rust/arrow-pyarrow-integration-testing/Cargo.toml    | 4 ++--
 rust/arrow/Cargo.toml                                | 2 +-
 rust/benchmarks/Cargo.toml                           | 2 +-
 rust/datafusion/Cargo.toml                           | 8 ++++----
 rust/datafusion/README.md                            | 2 +-
 rust/integration-testing/Cargo.toml                  | 2 +-
 rust/parquet/Cargo.toml                              | 6 +++---
 rust/parquet/README.md                               | 4 ++--
 rust/parquet_derive/Cargo.toml                       | 4 ++--
 rust/parquet_derive/README.md                        | 4 ++--
 rust/parquet_derive_test/Cargo.toml                  | 6 +++---
 30 files changed, 42 insertions(+), 42 deletions(-)

diff --git a/c_glib/configure.ac b/c_glib/configure.ac
index dc0624e..c6011f5 100644
--- a/c_glib/configure.ac
+++ b/c_glib/configure.ac
@@ -17,7 +17,7 @@
 
 AC_PREREQ(2.65)
 
-m4_define([arrow_glib_version], 3.0.0-SNAPSHOT)
+m4_define([arrow_glib_version], 3.0.0)
 AC_INIT([arrow-glib],
         arrow_glib_version,
         [https://issues.apache.org/jira/browse/ARROW],
diff --git a/c_glib/meson.build b/c_glib/meson.build
index e6a4a9b..43f9730 100644
--- a/c_glib/meson.build
+++ b/c_glib/meson.build
@@ -23,7 +23,7 @@ project('arrow-glib', 'c', 'cpp',
           'cpp_std=c++11',
         ])
 
-version = '3.0.0-SNAPSHOT'
+version = '3.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 2bfbcaf..2817e00 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=2.0.0.9000
+pkgver=3.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 63c4861..f6818d9 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 "3.0.0-SNAPSHOT")
+set(ARROW_VERSION "3.0.0")
 
 string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION 
"${ARROW_VERSION}")
 
diff --git a/csharp/Directory.Build.props b/csharp/Directory.Build.props
index b42a6ae..80093a0 100644
--- a/csharp/Directory.Build.props
+++ b/csharp/Directory.Build.props
@@ -29,7 +29,7 @@
     <Product>Apache Arrow library</Product>
     <Copyright>Copyright 2016-2019 The Apache Software Foundation</Copyright>
     <Company>The Apache Software Foundation</Company>
-    <Version>3.0.0-SNAPSHOT</Version>
+    <Version>3.0.0</Version>
   </PropertyGroup>
 
   <PropertyGroup>
diff --git a/dev/tasks/homebrew-formulae/apache-arrow.rb 
b/dev/tasks/homebrew-formulae/apache-arrow.rb
index ce989db..df2f2e9 100644
--- a/dev/tasks/homebrew-formulae/apache-arrow.rb
+++ b/dev/tasks/homebrew-formulae/apache-arrow.rb
@@ -1,7 +1,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-3.0.0-SNAPSHOT/apache-arrow-3.0.0-SNAPSHOT.tar.gz";
+  url 
"https://www.apache.org/dyn/closer.lua?path=arrow/arrow-3.0.0/apache-arrow-3.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 bee4724..04763ae 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-2.0.0.9000/apache-arrow-2.0.0.9000.tar.gz";
+  url 
"https://www.apache.org/dyn/closer.lua?path=arrow/arrow-3.0.0/apache-arrow-3.0.0.tar.gz";
   sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
   head "https://github.com/apache/arrow.git";
 
diff --git a/js/package.json b/js/package.json
index 6029c92..9672b61 100644
--- a/js/package.json
+++ b/js/package.json
@@ -113,5 +113,5 @@
   "engines": {
     "node": ">=11.12"
   },
-  "version": "3.0.0-SNAPSHOT"
+  "version": "3.0.0"
 }
diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt
index 9934970..fa66e59 100755
--- a/matlab/CMakeLists.txt
+++ b/matlab/CMakeLists.txt
@@ -18,7 +18,7 @@
 cmake_minimum_required(VERSION 3.2)
 set(CMAKE_CXX_STANDARD 11)
 
-set(MLARROW_VERSION "3.0.0-SNAPSHOT")
+set(MLARROW_VERSION "3.0.0")
 string(REGEX MATCH
   "^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")
 
diff --git a/python/setup.py b/python/setup.py
index 01060f1..7be15c2 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -515,7 +515,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 = '3.0.0-SNAPSHOT'
+default_version = '3.0.0'
 if (not os.path.exists('../.git') and
         not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
     if os.path.exists('PKG-INFO'):
diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index f87ea4e..5199a8d 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
 Package: arrow
 Title: Integration to 'Apache' 'Arrow'
-Version: 2.0.0.9000
+Version: 3.0.0
 Authors@R: c(
     person("Romain", "Fran\u00e7ois", email = "[email protected]", role = 
c("aut"), comment = c(ORCID = "0000-0002-2444-4226")),
     person("Jeroen", "Ooms", email = "[email protected]", role = c("aut")),
diff --git a/r/NEWS.md b/r/NEWS.md
index 1b9e4cc..7097b09 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,7 +17,7 @@
   under the License.
 -->
 
-# arrow 2.0.0.9000
+# arrow 3.0.0
 
 ## Python and Flight
 
diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb 
b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
index d2ba786..460cd19 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 = "3.0.0-SNAPSHOT"
+  VERSION = "3.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 6b5ae25..420988a 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 = "3.0.0-SNAPSHOT"
+  VERSION = "3.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 bdc2929..86a4e0b 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 = "3.0.0-SNAPSHOT"
+  VERSION = "3.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 22258af..a84578c 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 = "3.0.0-SNAPSHOT"
+  VERSION = "3.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 c295e30..adad317 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 = "3.0.0-SNAPSHOT"
+  VERSION = "3.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 dc6507f..00387be 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 = "3.0.0-SNAPSHOT"
+  VERSION = "3.0.0"
 
   module Version
     numbers, TAG = VERSION.split("-")
diff --git a/rust/arrow-flight/Cargo.toml b/rust/arrow-flight/Cargo.toml
index 181a54f..6529d8c 100644
--- a/rust/arrow-flight/Cargo.toml
+++ b/rust/arrow-flight/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-flight"
 description = "Apache Arrow Flight"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 edition = "2018"
 authors = ["Apache Arrow <[email protected]>"]
 homepage = "https://github.com/apache/arrow";
@@ -26,7 +26,7 @@ repository = "https://github.com/apache/arrow";
 license = "Apache-2.0"
 
 [dependencies]
-arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT" }
+arrow = { path = "../arrow", version = "3.0.0" }
 tonic = "0.3"
 bytes = "1"
 prost = "0.6"
diff --git a/rust/arrow-pyarrow-integration-testing/Cargo.toml 
b/rust/arrow-pyarrow-integration-testing/Cargo.toml
index 7a99855..e16ee3a 100644
--- a/rust/arrow-pyarrow-integration-testing/Cargo.toml
+++ b/rust/arrow-pyarrow-integration-testing/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-pyarrow-integration-testing"
 description = ""
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 homepage = "https://github.com/apache/arrow";
 repository = "https://github.com/apache/arrow";
 authors = ["Apache Arrow <[email protected]>"]
@@ -31,7 +31,7 @@ name = "arrow_pyarrow_integration_testing"
 crate-type = ["cdylib"]
 
 [dependencies]
-arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT" }
+arrow = { path = "../arrow", version = "3.0.0" }
 pyo3 = { version = "0.12.1", features = ["extension-module"] }
 
 [package.metadata.maturin]
diff --git a/rust/arrow/Cargo.toml b/rust/arrow/Cargo.toml
index 028444b..ba01c42 100644
--- a/rust/arrow/Cargo.toml
+++ b/rust/arrow/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "arrow"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 description = "Rust implementation of Apache Arrow"
 homepage = "https://github.com/apache/arrow";
 repository = "https://github.com/apache/arrow";
diff --git a/rust/benchmarks/Cargo.toml b/rust/benchmarks/Cargo.toml
index 74b74ec..44353bf 100644
--- a/rust/benchmarks/Cargo.toml
+++ b/rust/benchmarks/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-benchmarks"
 description = "Apache Arrow Benchmarks"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 edition = "2018"
 authors = ["Apache Arrow <[email protected]>"]
 homepage = "https://github.com/apache/arrow";
diff --git a/rust/datafusion/Cargo.toml b/rust/datafusion/Cargo.toml
index 426a43a..c1c245c 100644
--- a/rust/datafusion/Cargo.toml
+++ b/rust/datafusion/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "datafusion"
 description = "DataFusion is an in-memory query engine that uses Apache Arrow 
as the memory model"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 homepage = "https://github.com/apache/arrow";
 repository = "https://github.com/apache/arrow";
 authors = ["Apache Arrow <[email protected]>"]
@@ -47,8 +47,8 @@ simd = ["arrow/simd"]
 [dependencies]
 ahash = "0.6"
 hashbrown = "0.9"
-arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT", features = 
["prettyprint"] }
-parquet = { path = "../parquet", version = "3.0.0-SNAPSHOT", features = 
["arrow"] }
+arrow = { path = "../arrow", version = "3.0.0", features = ["prettyprint"] }
+parquet = { path = "../parquet", version = "3.0.0", features = ["arrow"] }
 sqlparser = "0.7.0"
 clap = "2.33"
 rustyline = {version = "7.0", optional = true}
@@ -70,7 +70,7 @@ rand = "0.8"
 criterion = "0.3"
 tempfile = "3"
 prost = "0.6"
-arrow-flight = { path = "../arrow-flight", version = "3.0.0-SNAPSHOT" }
+arrow-flight = { path = "../arrow-flight", version = "3.0.0" }
 tonic = "0.3"
 
 [[bench]]
diff --git a/rust/datafusion/README.md b/rust/datafusion/README.md
index 7229dd5..06b4b74 100644
--- a/rust/datafusion/README.md
+++ b/rust/datafusion/README.md
@@ -27,7 +27,7 @@ DataFusion can be used as a library by adding the following 
to your `Cargo.toml`
 
 ```toml
 [dependencies]
-datafusion = "3.0.0-SNAPSHOT"
+datafusion = "3.0.0"
 ```
 
 ## Using DataFusion as a binary
diff --git a/rust/integration-testing/Cargo.toml 
b/rust/integration-testing/Cargo.toml
index ccf58bb..4d289e8 100644
--- a/rust/integration-testing/Cargo.toml
+++ b/rust/integration-testing/Cargo.toml
@@ -18,7 +18,7 @@
 [package]
 name = "arrow-integration-testing"
 description = "Binaries used in the Arrow integration tests"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 homepage = "https://github.com/apache/arrow";
 repository = "https://github.com/apache/arrow";
 authors = ["Apache Arrow <[email protected]>"]
diff --git a/rust/parquet/Cargo.toml b/rust/parquet/Cargo.toml
index 6529a85..f755c26 100644
--- a/rust/parquet/Cargo.toml
+++ b/rust/parquet/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "parquet"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 license = "Apache-2.0"
 description = "Apache Parquet implementation in Rust"
 homepage = "https://github.com/apache/arrow";
@@ -41,7 +41,7 @@ lz4 = { version = "1.23", optional = true }
 zstd = { version = "0.6", optional = true }
 chrono = "0.4"
 num-bigint = "0.3"
-arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT", optional = true }
+arrow = { path = "../arrow", version = "3.0.0", optional = true }
 base64 = { version = "0.12", optional = true }
 
 [dev-dependencies]
@@ -51,7 +51,7 @@ brotli = "3.3"
 flate2 = "1.0"
 lz4 = "1.23"
 zstd = "0.6"
-arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT" }
+arrow = { path = "../arrow", version = "3.0.0" }
 serde_json = { version = "1.0", features = ["preserve_order"] }
 
 [features]
diff --git a/rust/parquet/README.md b/rust/parquet/README.md
index 281cdbf..b0df48b 100644
--- a/rust/parquet/README.md
+++ b/rust/parquet/README.md
@@ -23,7 +23,7 @@
 Add this to your Cargo.toml:
 ```toml
 [dependencies]
-parquet = "3.0.0-SNAPSHOT"
+parquet = "3.0.0"
 ```
 
 and this to your crate root:
@@ -44,7 +44,7 @@ while let Some(record) = iter.next() {
     println!("{}", record);
 }
 ```
-See [crate documentation](https://docs.rs/crate/parquet/3.0.0-SNAPSHOT) on 
available API.
+See [crate documentation](https://docs.rs/crate/parquet/3.0.0) on available 
API.
 
 ## Supported Parquet Version
 - Parquet-format 2.4.0
diff --git a/rust/parquet_derive/Cargo.toml b/rust/parquet_derive/Cargo.toml
index cb107fd..d547f39 100644
--- a/rust/parquet_derive/Cargo.toml
+++ b/rust/parquet_derive/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "parquet_derive"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 license = "Apache-2.0"
 description = "Derive macros for the Rust implementation of Apache Parquet"
 homepage = "https://github.com/apache/arrow";
@@ -39,4 +39,4 @@ uuid = []
 proc-macro2 = "1.0"
 quote = "1.0"
 syn = { version = "1.0", features = ["full", "extra-traits"] }
-parquet = { path = "../parquet", version = "3.0.0-SNAPSHOT" }
+parquet = { path = "../parquet", version = "3.0.0" }
diff --git a/rust/parquet_derive/README.md b/rust/parquet_derive/README.md
index 3647703..32694b7 100644
--- a/rust/parquet_derive/README.md
+++ b/rust/parquet_derive/README.md
@@ -30,8 +30,8 @@ Derive also has some support for the chrono time library. You 
must must enable t
 Add this to your Cargo.toml:
 ```toml
 [dependencies]
-parquet = "3.0.0-SNAPSHOT"
-parquet_derive = "3.0.0-SNAPSHOT"
+parquet = "3.0.0"
+parquet_derive = "3.0.0"
 ```
 
 and this to your crate root:
diff --git a/rust/parquet_derive_test/Cargo.toml 
b/rust/parquet_derive_test/Cargo.toml
index 692aa76..16fd2e6 100644
--- a/rust/parquet_derive_test/Cargo.toml
+++ b/rust/parquet_derive_test/Cargo.toml
@@ -17,7 +17,7 @@
 
 [package]
 name = "parquet_derive_test"
-version = "3.0.0-SNAPSHOT"
+version = "3.0.0"
 license = "Apache-2.0"
 description = "Integration test package for parquet-derive"
 homepage = "https://github.com/apache/arrow";
@@ -28,5 +28,5 @@ edition = "2018"
 publish = false
 
 [dependencies]
-parquet = { path = "../parquet", version = "3.0.0-SNAPSHOT" }
-parquet_derive = { path = "../parquet_derive", version = "3.0.0-SNAPSHOT" }
+parquet = { path = "../parquet", version = "3.0.0" }
+parquet_derive = { path = "../parquet_derive", version = "3.0.0" }

Reply via email to