Skip to content

Commit

Permalink
Setting version to 0.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jsleight committed Nov 14, 2023
1 parent dca358e commit 8784e8e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ but these are the configurations which are tested by mleap.

| MLeap Version | Spark Version | Scala Version | Java Version | Python Version | XGBoost Version | Tensorflow Version |
|---------------|---------------|------------------|--------------|----------------|-----------------|--------------------|
| 0.23.1 | 3.4.0 | 2.12.18 | 11 | 3.7, 3.8 | 1.7.6 | 2.10.1 |
| 0.23.0 | 3.4.0 | 2.12.13 | 11 | 3.7, 3.8 | 1.7.3 | 2.10.1 |
| 0.22.0 | 3.3.0 | 2.12.13 | 11 | 3.7, 3.8 | 1.6.1 | 2.7.0 |
| 0.21.1 | 3.2.0 | 2.12.13 | 11 | 3.7 | 1.6.1 | 2.7.0 |
Expand All @@ -62,7 +63,7 @@ but these are the configurations which are tested by mleap.
#### SBT

```sbt
libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.23.0"
libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.23.1"
```

#### Maven
Expand All @@ -71,7 +72,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.23.0"
<dependency>
<groupId>ml.combust.mleap</groupId>
<artifactId>mleap-runtime_2.12</artifactId>
<version>0.23.0</version>
<version>0.23.1</version>
</dependency>
```

Expand All @@ -80,7 +81,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-runtime" % "0.23.0"
#### SBT

```sbt
libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.23.0"
libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.23.1"
```

#### Maven
Expand All @@ -89,7 +90,7 @@ libraryDependencies += "ml.combust.mleap" %% "mleap-spark" % "0.23.0"
<dependency>
<groupId>ml.combust.mleap</groupId>
<artifactId>mleap-spark_2.12</artifactId>
<version>0.23.0</version>
<version>0.23.1</version>
</dependency>
```

Expand Down Expand Up @@ -271,7 +272,7 @@ For more documentation, please see our [documentation](https://combust.github.io

## Building

Please ensure you have sbt 1.9.3, java 11, scala 2.12.13
Please ensure you have sbt 1.9.3, java 11, scala 2.12.18

1. Initialize the git submodules `git submodule update --init --recursive`
2. Run `sbt compile`
Expand All @@ -298,7 +299,7 @@ integration.

See LICENSE and NOTICE file in this repository.

Copyright 2016 Combust, Inc.
Copyright 20 Combust, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
5 changes: 2 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Release 0.22.0-SNAPSHOT
# 0.22.0 and later

### Breaking Changes
Newer versions are tracked via github's release notes.

### What's Changed

# Release 0.21.0

Expand Down
6 changes: 3 additions & 3 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.23.0.jar \
--packages org.tensorflow:tensorflow-core-api:0.5.0,ml.dmlc:xgboost4j-spark:1.7.3 \
mleap-databricks-runtime-testkit/target/scala-2.12/mleap-databricks-runtime-testkit-assembly-0.23.0.jar
spark-submit --jars $PWD/mleap-databricks-runtime-fat/target/scala-2.12/mleap-databricks-runtime-fat-assembly-0.23.1.jar \
--packages org.tensorflow:tensorflow-core-api:0.5.0,ml.dmlc:xgboost4j-spark:1.7.6 \
mleap-databricks-runtime-testkit/target/scala-2.12/mleap-databricks-runtime-testkit-assembly-0.23.1.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.23.0"
version = "0.23.1"
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "0.23.0"
ThisBuild / version := "0.23.1"

0 comments on commit 8784e8e

Please sign in to comment.