Skip to content

Commit

Permalink
chore: bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamilton723 committed Aug 20, 2019
1 parent d518b8a commit 62946d1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![Build Status](https://msazure.visualstudio.com/Cognitive%20Services/_apis/build/status/Azure.mmlspark?branchName=master)](https://msazure.visualstudio.com/Cognitive%20Services/_build/latest?definitionId=83120&branchName=master) [![codecov](https://codecov.io/gh/Azure/mmlspark/branch/master/graph/badge.svg)](https://codecov.io/gh/Azure/mmlspark) [![Gitter](https://badges.gitter.im/Microsoft/MMLSpark.svg)](https://gitter.im/Microsoft/MMLSpark?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

[![Release Notes](https://img.shields.io/badge/release-notes-blue)](https://github.com/Azure/mmlspark/releases) [![Release Notes](https://img.shields.io/badge/version-0.18.0-blue)](https://github.com/Azure/mmlspark/releases) [![version](https://mmlspark.blob.core.windows.net/icons/badges/master_version3.svg)](#sbt)
[![Release Notes](https://img.shields.io/badge/release-notes-blue)](https://github.com/Azure/mmlspark/releases) [![Release Notes](https://img.shields.io/badge/version-0.18.1-blue)](https://github.com/Azure/mmlspark/releases) [![version](https://mmlspark.blob.core.windows.net/icons/badges/master_version3.svg)](#sbt)


MMLSpark is an ecosystem of tools aimed towards expanding the distributed computing framework
Expand Down Expand Up @@ -129,9 +129,9 @@ MMLSpark can be conveniently installed on existing Spark clusters via the
`--packages` option, examples:

```bash
spark-shell --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.0
pyspark --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.0
spark-submit --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.0 MyApp.jar
spark-shell --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.1
pyspark --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.1
spark-submit --packages com.microsoft.ml.spark:mmlspark_2.11:0.18.1 MyApp.jar
```

This can be used in other Spark contexts too. For example, you can use MMLSpark
Expand All @@ -146,14 +146,14 @@ cloud](http://community.cloud.databricks.com), create a new [library from Maven
coordinates](https://docs.databricks.com/user-guide/libraries.html#libraries-from-maven-pypi-or-spark-packages)
in your workspace.

For the coordinates use: `com.microsoft.ml.spark:mmlspark_2.11:0.18.0`. Ensure this library is
For the coordinates use: `com.microsoft.ml.spark:mmlspark_2.11:0.18.1`. Ensure this library is
attached to all clusters you create.

Finally, ensure that your Spark cluster has at least Spark 2.1 and Scala 2.11.

You can use MMLSpark in both your Scala and PySpark notebooks. To get started with our example notebooks import the following databricks archive:

`https://mmlspark.blob.core.windows.net/dbcs/MMLSpark%20Examples%20v0.18.0.dbc`
`https://mmlspark.blob.core.windows.net/dbcs/MMLSpark%20Examples%20v0.18.1.dbc`

### Docker

Expand Down Expand Up @@ -185,7 +185,7 @@ the above example, or from python:
```python
import pyspark
spark = pyspark.sql.SparkSession.builder.appName("MyApp") \
.config("spark.jars.packages", "com.microsoft.ml.spark:mmlspark_2.11:0.18.0") \
.config("spark.jars.packages", "com.microsoft.ml.spark:mmlspark_2.11:0.18.1") \
.getOrCreate()
import mmlspark
```
Expand All @@ -196,7 +196,7 @@ If you are building a Spark application in Scala, add the following lines to
your `build.sbt`:

```scala
libraryDependencies += "com.microsoft.ml.spark" %% "mmlspark" % "0.18.0"
libraryDependencies += "com.microsoft.ml.spark" %% "mmlspark" % "0.18.1"
```

### Building from source
Expand Down
6 changes: 3 additions & 3 deletions docs/R-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To install the current MMLSpark package for R use:

```R
...
devtools::install_url("https://mmlspark.azureedge.net/rrr/mmlspark-0.18.0.zip")
devtools::install_url("https://mmlspark.azureedge.net/rrr/mmlspark-0.18.1.zip")
...
```

Expand All @@ -23,7 +23,7 @@ It will take some time to install all dependencies. Then, run:
library(sparklyr)
library(dplyr)
config <- spark_config()
config$sparklyr.defaultPackages <- "com.microsoft.ml.spark:mmlspark_2.11:0.18.0"
config$sparklyr.defaultPackages <- "com.microsoft.ml.spark:mmlspark_2.11:0.18.1"
sc <- spark_connect(master = "local", config = config)
...
```
Expand Down Expand Up @@ -83,7 +83,7 @@ and then use spark_connect with method = "databricks":

```R
install.packages("devtools")
devtools::install_url("https://mmlspark.azureedge.net/rrr/mmlspark-0.18.0.zip")
devtools::install_url("https://mmlspark.azureedge.net/rrr/mmlspark-0.18.1.zip")
library(sparklyr)
library(dplyr)
sc <- spark_connect(method = "databricks")
Expand Down
8 changes: 4 additions & 4 deletions docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ You can now select one of the sample notebooks and run it, or create your own.
In the above, `mcr.microsoft.com/mmlspark/release` specifies the project and image name that you
want to run. There is another component implicit here which is the _tag_ (=
version) that you want to use — specifying it explicitly looks like
`mcr.microsoft.com/mmlspark/release:0.18.0` for the `0.18.0` tag.
`mcr.microsoft.com/mmlspark/release:0.18.1` for the `0.18.1` tag.

Leaving `mcr.microsoft.com/mmlspark/release` by itself has an implicit `latest` tag, so it is
equivalent to `mcr.microsoft.com/mmlspark/release:latest`. The `latest` tag is identical to the
Expand All @@ -44,7 +44,7 @@ that you will probably want to use can look as follows:
docker run -it --rm \
-p 127.0.0.1:80:8888 \
-v ~/myfiles:/notebooks/myfiles \
mcr.microsoft.com/mmlspark/release:0.18.0
mcr.microsoft.com/mmlspark/release:0.18.1
```

In this example, backslashes are used to break things up for readability; you
Expand All @@ -54,7 +54,7 @@ path and line breaks looks a little different:
docker run -it --rm `
-p 127.0.0.1:80:8888 `
-v C:\myfiles:/notebooks/myfiles `
mcr.microsoft.com/mmlspark/release:0.18.0
mcr.microsoft.com/mmlspark/release:0.18.1

Let's break this command and go over the meaning of each part:

Expand Down Expand Up @@ -137,7 +137,7 @@ Let's break this command and go over the meaning of each part:
model.write().overwrite().save('myfiles/myTrainedModel.mml')
```

- **`mcr.microsoft.com/mmlspark/release:0.18.0`**
- **`mcr.microsoft.com/mmlspark/release:0.18.1`**

Finally, this specifies an explicit version tag for the image that we want to
run.
Expand Down

0 comments on commit 62946d1

Please sign in to comment.