Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
CHANGELOG
=========

1.0.dev5
========
1.0.5
=====

* pyspark: SageMakerModel: Fix bugs in creating model from training job, s3 file and endpoint
* spark/pyspark: XGBoostSageMakerEstimator: Fix seed hyperparameter to use correct type (Int)
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-pyspark-sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup


VERSION = "1.0.4"
VERSION = "1.0.5"

TEMP_PATH = "deps"
JARS_TARGET = os.path.join(TEMP_PATH, "jars")
Expand Down
2 changes: 1 addition & 1 deletion sagemaker-spark-sdk/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ scalaVersion := "2.11.7"
// to change the version of spark add -DSPARK_VERSION=2.x.x when running sbt
// for example: "sbt -DSPARK_VERSION=2.1.1 clean compile test doc package"
val sparkVersion = System.getProperty("SPARK_VERSION", "2.2.0")
version := "spark_" + sparkVersion + "-1.0.4"
version := "spark_" + sparkVersion + "-1.0.5"

lazy val SageMakerSpark = (project in file("."))

Expand Down