Skip to content

Commit 06eb55e

Browse files
committed
verion update and minor changes
1 parent 901e573 commit 06eb55e

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

csharp/SparkCLR.nuspec

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Microsoft.SparkCLR</id>
5-
<version>1.6.100-TEST-0</version>
5+
<version>1.6.100</version>
66
<authors>Microsoft Corporation</authors>
77
<owners>Microsoft Corporation</owners>
8-
<licenseUrl>https://github.com/Microsoft/SparkCLR/blob/master/LICENSE</licenseUrl>
9-
<projectUrl>https://github.com/Microsoft/SparkCLR</projectUrl>
8+
<licenseUrl>https://github.com/Microsoft/Mobius/blob/master/LICENSE</licenseUrl>
9+
<projectUrl>https://github.com/Microsoft/Mobius</projectUrl>
1010
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1111
<description>C# language binding and extensions to Apache Spark</description>
12-
<releaseNotes>See release notes on GitHub https://github.com/Microsoft/SparkCLR/releases</releaseNotes>
12+
<releaseNotes>See release notes on GitHub https://github.com/Microsoft/Mobius/releases</releaseNotes>
1313
<copyright>Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.</copyright>
14-
<tags>C# .NET Apache Spark RDD DataFrame</tags>
14+
<tags>C# .NET Apache Spark RDD DataFrame Streaming SparkCLR Mobius</tags>
1515
<dependencies>
1616
<dependency id="Razorvine.Pyrolite" version="4.10.0" />
1717
<dependency id="Razorvine.Serpent" version="1.12.0" />

notes/mobius-release-info.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ The [release in GitHub](https://github.com/Microsoft/Mobius/releases) is a zip f
2020
|-- Data files used by the samples
2121
````
2222

23-
Instructions on running a Mobius app is available at https://github.com/skaarthik/Mobius/blob/master/notes/running-mobius-app.md
23+
Instructions on running a Mobius app is available at https://github.com/Microsoft/Mobius/blob/master/notes/running-mobius-app.md
2424

2525
Mobius samples do not have any extenral dependencies. The dependent jar files and data files used by samples are included in the release. Instructions to run samples are available at
26-
* https://github.com/skaarthik/Mobius/blob/master/notes/windows-instructions.md#running-samples for Windows
27-
* https://github.com/skaarthik/Mobius/blob/master/notes/linx-instructions.md#running-samples for Linux
26+
* https://github.com/Microsoft/Mobius/blob/master/notes/windows-instructions.md#running-samples for Windows
27+
* https://github.com/Microsoft/Mobius/blob/master/notes/linx-instructions.md#running-samples for Linux
2828

2929
Mobius examples under "examples" folder may have external dependencies and may need configuration settings to those dependencies before they can be run. Refer to [Running Examples](https://github.com/Microsoft/Mobius/blob/master/notes/running-mobius-app.md#running-mobius-examples-in-local-mode) for details on how to run each example.
3030

scala/pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.microsoft.sparkclr</groupId>
44
<artifactId>spark-clr_2.10</artifactId>
5-
<version>1.6.100-TEST-0</version>
6-
<name>SparkCLR Project</name>
5+
<version>1.6.100</version>
6+
<name>Mobius Project</name>
77
<description>C# language binding and extensions to Apache Spark</description>
8-
<url>https://github.com/Microsoft/sparkclr</url>
8+
<url>https://github.com/Microsoft/Mobius</url>
99
<inceptionYear>2015</inceptionYear>
1010
<licenses>
1111
<license>
1212
<name>MIT License</name>
13-
<url>https://github.com/Microsoft/SparkCLR/blob/master/LICENSE</url>
13+
<url>https://github.com/Microsoft/Mobius/blob/master/LICENSE</url>
1414
<distribution>repo</distribution>
1515
</license>
1616
</licenses>
1717

1818
<developers>
1919
<developer>
20-
<name>SparkCLR Team</name>
20+
<name>Mobius Team</name>
2121
<email>[email protected]</email>
2222
<organization>Microsoft</organization>
2323
<organizationUrl>http://www.microsoft.com</organizationUrl>
2424
</developer>
2525
</developers>
2626

2727
<scm>
28-
<connection>scm:git:[email protected]:Microsoft/SparkCLR.git</connection>
29-
<developerConnection>scm:git:[email protected]:Microsoft/SparkCLR.git</developerConnection>
30-
<url>[email protected]:Microsoft/SparkCLR.git</url>
28+
<connection>scm:git:[email protected]:Microsoft/Mobius.git</connection>
29+
<developerConnection>scm:git:[email protected]:Microsoft/Mobius.git</developerConnection>
30+
<url>[email protected]:Microsoft/Mobius.git</url>
3131
</scm>
3232

3333
<properties>

scripts/sparkclr-submit.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if "%SPARK_ASSEMBLY_JAR%"=="0" (
3636
exit /b 1
3737
)
3838

39-
if not defined SPARKCLR_JAR (set SPARKCLR_JAR=spark-clr_2.10-1.6.100-TEST-0.jar)
39+
if not defined SPARKCLR_JAR (set SPARKCLR_JAR=spark-clr_2.10-1.6.100.jar)
4040
echo SPARKCLR_JAR=%SPARKCLR_JAR%
4141
set SPARKCLR_CLASSPATH=%SPARKCLR_HOME%\lib\%SPARKCLR_JAR%
4242
REM SPARKCLR_DEBUGMODE_EXT_JARS environment variable is used to specify external dependencies to use in debug mode

scripts/sparkclr-submit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ then
5454
exit 1
5555
fi
5656

57-
export SPARKCLR_JAR=spark-clr_2.10-1.6.100-TEST-0.jar
57+
export SPARKCLR_JAR=spark-clr_2.10-1.6.100.jar
5858
export SPARKCLR_CLASSPATH="$SPARKCLR_HOME/lib/$SPARKCLR_JAR"
5959
# SPARKCLR_DEBUGMODE_EXT_JARS environment variable is used to specify external dependencies to use in debug mode
6060
[ ! "$SPARKCLR_DEBUGMODE_EXT_JARS" = "" ] && export SPARKCLR_CLASSPATH="$SPARKCLR_CLASSPATH:$SPARKCLR_DEBUGMODE_EXT_JARS"

0 commit comments

Comments
 (0)