Skip to content

Commit

Permalink
[Release] Update versions for 1.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Feb 7, 2020
1 parent 7b065b3 commit 3468f88
Show file tree
Hide file tree
Showing 23 changed files with 28 additions and 26 deletions.
2 changes: 1 addition & 1 deletion c_glib/configure.ac
Expand Up @@ -17,7 +17,7 @@

AC_PREREQ(2.65)

m4_define([arrow_glib_version], 0.16.0)
m4_define([arrow_glib_version], 1.0.0-SNAPSHOT)
AC_INIT([arrow-glib],
arrow_glib_version,
[https://issues.apache.org/jira/browse/ARROW],
Expand Down
2 changes: 1 addition & 1 deletion c_glib/meson.build
Expand Up @@ -23,7 +23,7 @@ project('arrow-glib', 'c', 'cpp',
'cpp_std=c++11',
])

version = '0.16.0'
version = '1.0.0-SNAPSHOT'
if version.endswith('-SNAPSHOT')
version_numbers = version.split('-')[0].split('.')
version_tag = version.split('-')[1]
Expand Down
2 changes: 1 addition & 1 deletion ci/PKGBUILD
Expand Up @@ -18,7 +18,7 @@
_realname=arrow
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=0.16.0
pkgver=0.16.0.9000
pkgrel=8000
pkgdesc="Apache Arrow is a cross-language development platform for in-memory data (mingw-w64)"
arch=("any")
Expand Down
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Expand Up @@ -18,7 +18,7 @@
cmake_minimum_required(VERSION 3.2)
message(STATUS "Building using CMake version: ${CMAKE_VERSION}")

set(ARROW_VERSION "0.16.0")
set(ARROW_VERSION "1.0.0-SNAPSHOT")

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

Expand Down
2 changes: 1 addition & 1 deletion csharp/Directory.Build.props
Expand Up @@ -12,7 +12,7 @@
<Product>Apache Arrow library</Product>
<Copyright>Copyright 2016-2019 The Apache Software Foundation</Copyright>
<Company>The Apache Software Foundation</Company>
<Version>0.16.0</Version>
<Version>1.0.0-SNAPSHOT</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion 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.cgi?path=arrow/arrow-0.16.0/apache-arrow-0.16.0.tar.gz"
url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-1.0.0-SNAPSHOT/apache-arrow-1.0.0-SNAPSHOT.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
head "https://github.com/apache/arrow.git"

Expand Down
2 changes: 1 addition & 1 deletion dev/tasks/homebrew-formulae/autobrew/apache-arrow.rb
Expand Up @@ -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.cgi?path=arrow/arrow-0.16.0/apache-arrow-0.16.0.tar.gz"
url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-0.16.0.9000/apache-arrow-0.16.0.9000.tar.gz"
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
head "https://github.com/apache/arrow.git"

Expand Down
2 changes: 1 addition & 1 deletion js/package.json
Expand Up @@ -113,5 +113,5 @@
"engines": {
"node": ">=11.12"
},
"version": "0.16.0"
"version": "1.0.0-SNAPSHOT"
}
2 changes: 1 addition & 1 deletion matlab/CMakeLists.txt
Expand Up @@ -18,7 +18,7 @@
cmake_minimum_required(VERSION 3.2)
set(CMAKE_CXX_STANDARD 11)

set(MLARROW_VERSION "0.16.0")
set(MLARROW_VERSION "1.0.0-SNAPSHOT")
string(REGEX MATCH
"^[0-9]+\\.[0-9]+\\.[0-9]+" MLARROW_BASE_VERSION "${MLARROW_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -520,7 +520,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 = '0.16.0'
default_version = '1.0.0-SNAPSHOT'
if (not os.path.exists('../.git')
and not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
if os.path.exists('PKG-INFO'):
Expand Down
2 changes: 1 addition & 1 deletion r/DESCRIPTION
@@ -1,6 +1,6 @@
Package: arrow
Title: Integration to 'Apache' 'Arrow'
Version: 0.16.0
Version: 0.16.0.9000
Authors@R: c(
person("Romain", "Fran\u00e7ois", email = "romain@rstudio.com", role = c("aut"), comment = c(ORCID = "0000-0002-2444-4226")),
person("Jeroen", "Ooms", email = "jeroen@berkeley.edu", role = c("aut")),
Expand Down
2 changes: 2 additions & 0 deletions r/NEWS.md
Expand Up @@ -17,6 +17,8 @@
under the License.
-->

# arrow 0.16.0.9000

# arrow 0.16.0

## Multi-file datasets
Expand Down
2 changes: 1 addition & 1 deletion ruby/red-arrow-cuda/lib/arrow-cuda/version.rb
Expand Up @@ -16,7 +16,7 @@
# under the License.

module ArrowCUDA
VERSION = "0.16.0"
VERSION = "1.0.0-SNAPSHOT"

module Version
numbers, TAG = VERSION.split("-")
Expand Down
2 changes: 1 addition & 1 deletion ruby/red-arrow/lib/arrow/version.rb
Expand Up @@ -16,7 +16,7 @@
# under the License.

module Arrow
VERSION = "0.16.0"
VERSION = "1.0.0-SNAPSHOT"

module Version
numbers, TAG = VERSION.split("-")
Expand Down
2 changes: 1 addition & 1 deletion ruby/red-gandiva/lib/gandiva/version.rb
Expand Up @@ -16,7 +16,7 @@
# under the License.

module Gandiva
VERSION = "0.16.0"
VERSION = "1.0.0-SNAPSHOT"

module Version
numbers, TAG = VERSION.split("-")
Expand Down
2 changes: 1 addition & 1 deletion ruby/red-parquet/lib/parquet/version.rb
Expand Up @@ -16,7 +16,7 @@
# under the License.

module Parquet
VERSION = "0.16.0"
VERSION = "1.0.0-SNAPSHOT"

module Version
numbers, TAG = VERSION.split("-")
Expand Down
2 changes: 1 addition & 1 deletion ruby/red-plasma/lib/plasma/version.rb
Expand Up @@ -16,7 +16,7 @@
# under the License.

module Plasma
VERSION = "0.16.0"
VERSION = "1.0.0-SNAPSHOT"

module Version
numbers, TAG = VERSION.split("-")
Expand Down
2 changes: 1 addition & 1 deletion rust/arrow-flight/Cargo.toml
Expand Up @@ -18,7 +18,7 @@
[package]
name = "arrow-flight"
description = "Apache Arrow Flight"
version = "0.16.0"
version = "1.0.0-SNAPSHOT"
edition = "2018"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
homepage = "https://github.com/apache/arrow"
Expand Down
2 changes: 1 addition & 1 deletion rust/arrow/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "arrow"
version = "0.16.0"
version = "1.0.0-SNAPSHOT"
description = "Rust implementation of Apache Arrow"
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
Expand Down
6 changes: 3 additions & 3 deletions rust/datafusion/Cargo.toml
Expand Up @@ -18,7 +18,7 @@
[package]
name = "datafusion"
description = "DataFusion is an in-memory query engine that uses Apache Arrow as the memory model"
version = "0.16.0"
version = "1.0.0-SNAPSHOT"
homepage = "https://github.com/apache/arrow"
repository = "https://github.com/apache/arrow"
authors = ["Apache Arrow <dev@arrow.apache.org>"]
Expand All @@ -45,8 +45,8 @@ cli = ["rustyline"]

[dependencies]
fnv = "1.0.3"
arrow = { path = "../arrow", version = "0.16.0" }
parquet = { path = "../parquet", version = "0.16.0" }
arrow = { path = "../arrow", version = "1.0.0-SNAPSHOT" }
parquet = { path = "../parquet", version = "1.0.0-SNAPSHOT" }
sqlparser = "0.2.0"
clap = "2.33.0"
prettytable-rs = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/datafusion/README.md
Expand Up @@ -29,7 +29,7 @@ Add this to your Cargo.toml:

```toml
[dependencies]
datafusion = "0.16.0"
datafusion = "1.0.0-SNAPSHOT"
```

#### Use as a bin
Expand Down
4 changes: 2 additions & 2 deletions rust/parquet/Cargo.toml
Expand Up @@ -17,7 +17,7 @@

[package]
name = "parquet"
version = "0.16.0"
version = "1.0.0-SNAPSHOT"
license = "Apache-2.0"
description = "Apache Parquet implementation in Rust"
homepage = "https://github.com/apache/arrow"
Expand All @@ -40,7 +40,7 @@ lz4 = "1.23"
zstd = "0.4"
chrono = "0.4"
num-bigint = "0.2"
arrow = { path = "../arrow", version = "0.16.0" }
arrow = { path = "../arrow", version = "1.0.0-SNAPSHOT" }
serde_json = { version = "1.0.13", features = ["preserve_order"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions rust/parquet/README.md
Expand Up @@ -23,7 +23,7 @@
Add this to your Cargo.toml:
```toml
[dependencies]
parquet = "0.16.0"
parquet = "1.0.0-SNAPSHOT"
```

and this to your crate root:
Expand All @@ -44,7 +44,7 @@ while let Some(record) = iter.next() {
println!("{}", record);
}
```
See [crate documentation](https://docs.rs/crate/parquet/0.16.0) on available API.
See [crate documentation](https://docs.rs/crate/parquet/1.0.0-SNAPSHOT) on available API.

## Supported Parquet Version
- Parquet-format 2.4.0
Expand Down

0 comments on commit 3468f88

Please sign in to comment.