Skip to content

Commit 3468f88

Browse files
committed
[Release] Update versions for 1.0.0-SNAPSHOT
1 parent 7b065b3 commit 3468f88

File tree

23 files changed

+28
-26
lines changed

23 files changed

+28
-26
lines changed

c_glib/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
AC_PREREQ(2.65)
1919

20-
m4_define([arrow_glib_version], 0.16.0)
20+
m4_define([arrow_glib_version], 1.0.0-SNAPSHOT)
2121
AC_INIT([arrow-glib],
2222
arrow_glib_version,
2323
[https://issues.apache.org/jira/browse/ARROW],

c_glib/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project('arrow-glib', 'c', 'cpp',
2323
'cpp_std=c++11',
2424
])
2525

26-
version = '0.16.0'
26+
version = '1.0.0-SNAPSHOT'
2727
if version.endswith('-SNAPSHOT')
2828
version_numbers = version.split('-')[0].split('.')
2929
version_tag = version.split('-')[1]

ci/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=0.16.0
21+
pkgver=0.16.0.9000
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
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.2)
1919
message(STATUS "Building using CMake version: ${CMAKE_VERSION}")
2020

21-
set(ARROW_VERSION "0.16.0")
21+
set(ARROW_VERSION "1.0.0-SNAPSHOT")
2222

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

csharp/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Product>Apache Arrow library</Product>
1313
<Copyright>Copyright 2016-2019 The Apache Software Foundation</Copyright>
1414
<Company>The Apache Software Foundation</Company>
15-
<Version>0.16.0</Version>
15+
<Version>1.0.0-SNAPSHOT</Version>
1616
</PropertyGroup>
1717

1818
<PropertyGroup>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ApacheArrow < Formula
22
desc "Columnar in-memory analytics layer designed to accelerate big data"
33
homepage "https://arrow.apache.org/"
4-
url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-0.16.0/apache-arrow-0.16.0.tar.gz"
4+
url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-1.0.0-SNAPSHOT/apache-arrow-1.0.0-SNAPSHOT.tar.gz"
55
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
66
head "https://github.com/apache/arrow.git"
77

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.cgi?path=arrow/arrow-0.16.0/apache-arrow-0.16.0.tar.gz"
22+
url "https://www.apache.org/dyn/closer.cgi?path=arrow/arrow-0.16.0.9000/apache-arrow-0.16.0.9000.tar.gz"
2323
sha256 "9948ddb6d4798b51552d0dca3252dd6e3a7d0f9702714fc6f5a1b59397ce1d28"
2424
head "https://github.com/apache/arrow.git"
2525

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,5 @@
113113
"engines": {
114114
"node": ">=11.12"
115115
},
116-
"version": "0.16.0"
116+
"version": "1.0.0-SNAPSHOT"
117117
}

matlab/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.2)
1919
set(CMAKE_CXX_STANDARD 11)
2020

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

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def _move_shared_libs_unix(build_prefix, build_lib, lib_name):
520520

521521
# If the event of not running from a git clone (e.g. from a git archive
522522
# or a Python sdist), see if we can set the version number ourselves
523-
default_version = '0.16.0'
523+
default_version = '1.0.0-SNAPSHOT'
524524
if (not os.path.exists('../.git')
525525
and not os.environ.get('SETUPTOOLS_SCM_PRETEND_VERSION')):
526526
if os.path.exists('PKG-INFO'):

0 commit comments

Comments
 (0)