Update version info in docs, etc. after releasing 0.2.0 (#114)

This commit is contained in:
Terry Kim 2020-08-05 17:07:36 -07:00 коммит произвёл GitHub
Родитель 420ebb42e5
Коммит 11b71eab4e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 12 добавлений и 6 удалений

Просмотреть файл

@ -147,6 +147,12 @@ developers := List(
name = "Jiying Li",
email = "",
url = url("https://github.com/laserljy")
),
Developer(
id = "sezruby",
name = "Eunjin Song",
email = "",
url = url("https://github.com/sezruby")
)
)

Просмотреть файл

@ -27,7 +27,7 @@ For your Maven project, add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.microsoft.hyperspace</groupId>
<artifactId>hyperspace-core_2.11</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```
@ -37,7 +37,7 @@ For your Maven project, add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.microsoft.hyperspace</groupId>
<artifactId>hyperspace-core_2.12</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</dependency>
```
@ -45,7 +45,7 @@ For your Maven project, add the following lines to your `pom.xml` file:
For you SBT project, add the following line to your `build.sbt` file:
```
libraryDependencies += "com.microsoft.hyperspace" %% "hyperspace-core" % "0.1.0"
libraryDependencies += "com.microsoft.hyperspace" %% "hyperspace-core" % "0.2.0"
```
### Run with an interactive shell
@ -55,7 +55,7 @@ To use Hyperspace with a Spark's interactive shell, you need to download/install
Start the Spark Scala shell as follows:
```
./bin/spark-shell --packages com.microsoft.hyperspace:hyperspace-core_2.11:0.1.0
./bin/spark-shell --packages com.microsoft.hyperspace:hyperspace-core_2.11:0.2.0
```
#### PySpark

Просмотреть файл

@ -1,6 +1,6 @@
name := "hyperspaceApp"
version := "0.1"
version := "0.2"
scalaVersion := "2.11.12"
val sparkVersion = "2.4.2"
@ -11,7 +11,7 @@ libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-catalyst" % sparkVersion % "provided" withSources()
)
libraryDependencies += "com.microsoft.hyperspace" %% "hyperspace-core" % "0.1.0"
libraryDependencies += "com.microsoft.hyperspace" %% "hyperspace-core" % "0.2.0"
scalacOptions ++= Seq(
"-target:jvm-1.8"