Skip to content

Commit

Permalink
HOTFIX: Updating additional version data
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell committed Nov 26, 2014
1 parent de8029b commit dfb8c65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include:

# These allow the documentation to be updated with newer releases
# of Spark, Scala, and Mesos.
SPARK_VERSION: 1.2.0-SNAPSHOT
SPARK_VERSION: 1.2.0
SPARK_VERSION_SHORT: 1.2.0
SCALA_BINARY_VERSION: "2.10"
SCALA_VERSION: "2.10.4"
Expand Down
5 changes: 4 additions & 1 deletion ec2/spark_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from boto.ec2.blockdevicemapping import BlockDeviceMapping, BlockDeviceType, EBSBlockDeviceType
from boto import ec2

DEFAULT_SPARK_VERSION = "1.1.0"
DEFAULT_SPARK_VERSION = "1.2.0"
SPARK_EC2_DIR = os.path.dirname(os.path.realpath(__file__))

MESOS_SPARK_EC2_BRANCH = "v4"
Expand Down Expand Up @@ -210,10 +210,13 @@ def get_spark_shark_version(opts):
"0.8.1": "0.8.1",
"0.9.0": "0.9.0",
"0.9.1": "0.9.1",
# These are dummy versions (no Shark versions after this)
"1.0.0": "1.0.0",
"1.0.1": "1.0.1",
"1.0.2": "1.0.2",
"1.1.0": "1.1.0",
"1.1.1": "1.1.1",
"1.2.0": "1.2.0",
}
version = opts.spark_version.replace("v", "")
if version not in spark_shark_map:
Expand Down

0 comments on commit dfb8c65

Please sign in to comment.