This is an automated email from the ASF dual-hosted git repository. kszucs pushed a commit to annotated tag apache-arrow-0.12.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
commit ba02353d832905cc8a3d57d88be877434b352679 Author: Krisztián Szűcs <[email protected]> AuthorDate: Tue Jan 15 22:04:03 2019 +0100 [Release] Update versions for 0.12.0 --- c_glib/configure.ac | 2 +- c_glib/meson.build | 2 +- cpp/CMakeLists.txt | 2 +- matlab/CMakeLists.txt | 2 +- r/DESCRIPTION | 2 +- ruby/red-arrow-cuda/lib/arrow-cuda/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/Cargo.toml | 2 +- rust/parquet/Cargo.toml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/c_glib/configure.ac b/c_glib/configure.ac index c63bfff..685b8c1 100644 --- a/c_glib/configure.ac +++ b/c_glib/configure.ac @@ -17,7 +17,7 @@ AC_PREREQ(2.65) -m4_define([arrow_glib_version], 0.12.0-SNAPSHOT) +m4_define([arrow_glib_version], 0.12.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 c2cf36c..4f8e59a 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 = '0.12.0-SNAPSHOT' +version = '0.12.0' if version.endswith('-SNAPSHOT') version_numbers = version.split('-')[0].split('.') version_tag = version.split('-')[1] diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 08868af..8c30816 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.2) message(STATUS "Building using CMake version: ${CMAKE_VERSION}") -set(ARROW_VERSION "0.12.0-SNAPSHOT") +set(ARROW_VERSION "0.12.0") string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" ARROW_BASE_VERSION "${ARROW_VERSION}") diff --git a/matlab/CMakeLists.txt b/matlab/CMakeLists.txt index a6371d1..52673d2 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 "0.12.0-SNAPSHOT") +set(MLARROW_VERSION "0.12.0") string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}") diff --git a/r/DESCRIPTION b/r/DESCRIPTION index 5303a87..768107c 100644 --- a/r/DESCRIPTION +++ b/r/DESCRIPTION @@ -1,6 +1,6 @@ Package: arrow Title: R Integration to 'Apache' 'Arrow' -Version: 0.11.0.9000 +Version: 0.12.0 Authors@R: c( person("Romain", "François", email = "[email protected]", role = c("aut", "cre")), person("Javier", "Luraschi", email = "[email protected]", role = c("ctb")), diff --git a/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb b/ruby/red-arrow-cuda/lib/arrow-cuda/version.rb index 6426d2d..266254f 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 = "0.12.0-SNAPSHOT" + VERSION = "0.12.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 8ff0779..363d07d 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 = "0.12.0-SNAPSHOT" + VERSION = "0.12.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 dbdaf36..808234f 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 = "0.12.0-SNAPSHOT" + VERSION = "0.12.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 997a92e..5798240 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 = "0.12.0-SNAPSHOT" + VERSION = "0.12.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 e88f2de..1ac590f 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 = "0.12.0-SNAPSHOT" + VERSION = "0.12.0" module Version numbers, TAG = VERSION.split("-") diff --git a/rust/arrow/Cargo.toml b/rust/arrow/Cargo.toml index 38e7e5e..2700053 100644 --- a/rust/arrow/Cargo.toml +++ b/rust/arrow/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "arrow" -version = "0.12.0-SNAPSHOT" +version = "0.12.0" description = "Rust implementation of Apache Arrow" homepage = "https://github.com/apache/arrow" repository = "https://github.com/apache/arrow" diff --git a/rust/parquet/Cargo.toml b/rust/parquet/Cargo.toml index 3cb4f05..a2b2224 100644 --- a/rust/parquet/Cargo.toml +++ b/rust/parquet/Cargo.toml @@ -17,7 +17,7 @@ [package] name = "parquet" -version = "0.12.0-SNAPSHOT" +version = "0.12.0" license = "Apache-2.0" description = "Apache Parquet implementation in Rust" homepage = "https://github.com/apache/arrow"
