Skip to content

Commit 9e5c8e1

Browse files
committed
Update spark-ec2 and R package versions for 1.6.1
1 parent 8a43c3b commit 9e5c8e1

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

R/pkg/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: SparkR
22
Type: Package
33
Title: R frontend for Spark
4-
Version: 1.6.0
4+
Version: 1.6.1
55
Date: 2013-09-09
66
Author: The Apache Software Foundation
77
Maintainer: Shivaram Venkataraman <[email protected]>

dev/create-release/generate-changelist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
import traceback
3232

3333
SPARK_HOME = os.environ["SPARK_HOME"]
34-
NEW_RELEASE_VERSION = "1.6.0"
35-
PREV_RELEASE_GIT_TAG = "v1.5.2"
34+
NEW_RELEASE_VERSION = "1.6.1"
35+
PREV_RELEASE_GIT_TAG = "v1.6.0"
3636

3737
CHANGELIST = "CHANGES.txt"
3838
OLD_CHANGELIST = "%s.old" % (CHANGELIST)

ec2/spark_ec2.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
raw_input = input
5252
xrange = range
5353

54-
SPARK_EC2_VERSION = "1.6.0"
54+
SPARK_EC2_VERSION = "1.6.1"
5555
SPARK_EC2_DIR = os.path.dirname(os.path.realpath(__file__))
5656

5757
VALID_SPARK_VERSIONS = set([
@@ -76,6 +76,7 @@
7676
"1.5.1",
7777
"1.5.2",
7878
"1.6.0",
79+
"1.6.1",
7980
])
8081

8182
SPARK_TACHYON_MAP = {
@@ -94,6 +95,7 @@
9495
"1.5.1": "0.7.1",
9596
"1.5.2": "0.7.1",
9697
"1.6.0": "0.8.2",
98+
"1.6.1": "0.8.2",
9799
}
98100

99101
DEFAULT_SPARK_VERSION = SPARK_EC2_VERSION

0 commit comments

Comments
 (0)