Skip to content

Commit

Permalink
Setting version to 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsleight committed Feb 24, 2023
1 parent a1b12b6 commit 85dff74
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Choose the right version of the `mleap-spark` module to export your pipeline. Th

| MLeap Version | Spark Version |
|---------------|---------------|
| 0.22.0 | 3.3.0 |
| 0.21.1 | 3.2.0 |
| 0.21.0 | 3.2.0 |
| 0.20.0 | 3.2.0 |
| 0.19.0 | 3.0.2 |
Expand Down Expand Up @@ -75,7 +77,7 @@ Please see the [release notes](RELEASE_NOTES.md) for changes (especially breakin
#### SBT

```sbt
libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.21.0"
libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.22.0"
```

#### Maven
Expand All @@ -84,7 +86,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.21.0"
<dependency>
<groupId>ml.combust.mleap</groupId>
<artifactId>mleap-runtime_2.12</artifactId>
<version>0.21.0</version>
<version>0.22.0</version>
</dependency>
```

Expand All @@ -93,7 +95,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.21.0"
#### SBT

```sbt
libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.21.0"
libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.22.0"
```

#### Maven
Expand All @@ -102,14 +104,14 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.21.0"
<dependency>
<groupId>ml.combust.mleap</groupId>
<artifactId>mleap-spark_2.12</artifactId>
<version>0.21.0</version>
<version>0.22.0</version>
</dependency>
```

### Spark Packages

```bash
$ bin/spark-shell --packages ml.combust.mleap:mleap-spark_2.12:0.21.0
$ bin/spark-shell --packages ml.combust.mleap:mleap-spark_2.12:0.22.0
```

### PySpark Integration
Expand Down
4 changes: 2 additions & 2 deletions mleap-databricks-runtime-testkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```
sbt mleap-databricks-runtime-fat/assembly mleap-databricks-runtime-testkit/assembly
spark-submit --jars $PWD/mleap-databricks-runtime-fat/target/scala-2.12/mleap-databricks-runtime-fat-assembly-0.21.0.jar \
spark-submit --jars $PWD/mleap-databricks-runtime-fat/target/scala-2.12/mleap-databricks-runtime-fat-assembly-0.22.0.jar \
--packages org.tensorflow:tensorflow:1.11.0,org.tensorflow:libtensorflow_jni:1.11.0,ml.dmlc:xgboost4j-spark:1.6.1 \
mleap-databricks-runtime-testkit/target/scala-2.12/mleap-databricks-runtime-testkit-assembly-0.21.0.jar
mleap-databricks-runtime-testkit/target/scala-2.12/mleap-databricks-runtime-testkit-assembly-0.22.0.jar
```
2 changes: 1 addition & 1 deletion python/mleap/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = "0.21.0"
version = "0.22.0"
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.22.0-SNAPSHOT"
version in ThisBuild := "0.22.0"

0 comments on commit 85dff74

Please sign in to comment.