Skip to content

Commit d8ab072

Browse files
committed
Setting version to 0.21.0
1 parent a2dbcee commit d8ab072

File tree

6 files changed

+22
-20
lines changed

6 files changed

+22
-20
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Choose the right version of the `mleap-spark` module to export your pipeline. Th
4949

5050
| MLeap Version | Spark Version |
5151
|---------------|---------------|
52+
| 0.21.0 | 3.2.0 |
5253
| 0.20.0 | 3.2.0 |
5354
| 0.19.0 | 3.0.2 |
5455
| 0.18.1 | 3.0.2 |
@@ -75,7 +76,7 @@ Please see the [release notes](RELEASE_NOTES.md) for changes (especially breakin
7576
#### SBT
7677

7778
```sbt
78-
libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.20.0"
79+
libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.21.0"
7980
```
8081

8182
#### Maven
@@ -84,7 +85,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.20.0"
8485
<dependency>
8586
<groupId>ml.combust.mleap</groupId>
8687
<artifactId>mleap-runtime_2.12</artifactId>
87-
<version>0.20.0</version>
88+
<version>0.21.0</version>
8889
</dependency>
8990
```
9091

@@ -93,7 +94,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.20.0"
9394
#### SBT
9495

9596
```sbt
96-
libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.20.0"
97+
libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.21.0"
9798
```
9899

99100
#### Maven
@@ -102,14 +103,14 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.20.0"
102103
<dependency>
103104
<groupId>ml.combust.mleap</groupId>
104105
<artifactId>mleap-spark_2.12</artifactId>
105-
<version>0.20.0</version>
106+
<version>0.21.0</version>
106107
</dependency>
107108
```
108109

109110
### Spark Packages
110111

111112
```bash
112-
$ bin/spark-shell --packages ml.combust.mleap:mleap-spark_2.12:0.20.0
113+
$ bin/spark-shell --packages ml.combust.mleap:mleap-spark_2.12:0.21.0
113114
```
114115

115116
### PySpark Integration

RELEASE_NOTES.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Release 0.21.0-SNAPSHOT
22

33
### Breaking Changes
4-
5-
### New Features
6-
7-
### Bug Fixes
8-
9-
### Improvements
10-
11-
### Other Changes
4+
MLeap is now built with Java 11 instead of Java 8.
5+
6+
## What's Changed
7+
* Shade log4j for databricks fat jar by @WeichenXu123 in https://github.com/combust/mleap/pull/812
8+
* ScalaPB & sbt Upgrade by @emitc2h in https://github.com/combust/mleap/pull/818
9+
* Upgrade xgboost dependency to be 1.6.1 version by @WeichenXu123 in https://github.com/combust/mleap/pull/822
10+
* Additional Math unary operations by @shyamsunder00 in https://github.com/combust/mleap/pull/826
11+
* Added backward compatibility fix for XGBoost models by @chaitanya-basava in https://github.com/combust/mleap/pull/829
12+
* Address MathBinary issue with zeros defaults by @arthurarj in https://github.com/combust/mleap/pull/828
1213

1314
# Release 0.20.0
1415

mleap-databricks-runtime-testkit/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```
44
sbt mleap-databricks-runtime-fat/assembly mleap-databricks-runtime-testkit/assembly
55
6-
spark-submit --jars $PWD/mleap-databricks-runtime-fat/target/scala-2.12/mleap-databricks-runtime-fat-assembly-0.20.0.jar \
7-
--packages org.tensorflow:tensorflow:1.11.0,org.tensorflow:libtensorflow_jni:1.11.0,ml.dmlc:xgboost4j-spark:1.0.0 \
8-
mleap-databricks-runtime-testkit/target/scala-2.12/mleap-databricks-runtime-testkit-assembly-0.20.0.jar
9-
```
6+
spark-submit --jars $PWD/mleap-databricks-runtime-fat/target/scala-2.12/mleap-databricks-runtime-fat-assembly-0.21.0.jar \
7+
--packages org.tensorflow:tensorflow:1.11.0,org.tensorflow:libtensorflow_jni:1.11.0,ml.dmlc:xgboost4j-spark:1.6.1 \
8+
mleap-databricks-runtime-testkit/target/scala-2.12/mleap-databricks-runtime-testkit-assembly-0.21.0.jar
9+
```

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
44
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
55
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
66
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.1.1")
7-
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6")
7+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.9")
88
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
99
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.9.3")
1010
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")

python/mleap/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# See the License for the specific language governing permissions and
1717
# limitations under the License.
1818

19-
version = "0.21.0-SNAPSHOT"
19+
version = "0.21.0"

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.21.0-SNAPSHOT"
1+
version in ThisBuild := "0.21.0"

0 commit comments

Comments
 (0)