Skip to content

Commit 0d6498f

Browse files
Prep 0.9.0 release (#403)
1 parent 8e4b9eb commit 0d6498f

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<tbody align="center">
4040
<tr>
4141
<td >2.3.*</td>
42-
<td rowspan=6><a href="https://github.com/dotnet/spark/releases/tag/v0.8.0">v0.8.0</a></td>
42+
<td rowspan=6><a href="https://github.com/dotnet/spark/releases/tag/v0.9.0">v0.9.0</a></td>
4343
</tr>
4444
<tr>
4545
<td>2.4.0</td>

benchmark/scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.spark</groupId>
55
<artifactId>microsoft-spark-benchmark</artifactId>
6-
<version>0.8.0</version>
6+
<version>0.9.0</version>
77
<inceptionYear>2019</inceptionYear>
88
<properties>
99
<encoding>UTF-8</encoding>

docs/release-notes/0.9/release-0.9.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# .NET for Apache Spark 0.9 Release Notes
2+
3+
### New Features and Improvements
4+
5+
* Expose `DataStreamWriter.Foreach` API ([#387](https://github.com/dotnet/spark/pull/387))
6+
* Support UDF that returns `Row` object ([#376](https://github.com/dotnet/spark/pull/376), [#406](https://github.com/dotnet/spark/pull/406), [#411](https://github.com/dotnet/spark/pull/411))
7+
* Support for Bucketizer ([#378](https://github.com/dotnet/spark/pull/378))
8+
* Support `DateType` ([#420](https://github.com/dotnet/spark/pull/420))
9+
10+
### Breaking Changes
11+
12+
* The prior versions (<0.9) of `Microsoft.Spark.Worker` **are not compatible** with this release due to the internal changes related to UDFs.
13+
14+
### Supported Spark Versions
15+
16+
The following table outlines the supported Spark versions along with the microsoft-spark JAR to use with:
17+
18+
<table>
19+
<thead>
20+
<tr>
21+
<th>Spark Version</th>
22+
<th>microsoft-spark JAR</th>
23+
</tr>
24+
</thead>
25+
<tbody align="center">
26+
<tr>
27+
<td>2.3.*</td>
28+
<td>microsoft-spark-2.3.x-0.9.0.jar</td>
29+
</tr>
30+
<tr>
31+
<td>2.4.0</td>
32+
<td rowspan=5>microsoft-spark-2.4.x-0.9.0.jar</td>
33+
</tr>
34+
<tr>
35+
<td>2.4.1</td>
36+
</tr>
37+
<tr>
38+
<td>2.4.3</td>
39+
</tr>
40+
<tr>
41+
<td>2.4.4</td>
42+
</tr>
43+
<tr>
44+
<td>2.4.5</td>
45+
</tr>
46+
<tr>
47+
<td>2.4.2</td>
48+
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></td>
49+
</tr>
50+
</tbody>
51+
</table>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionPrefix>0.8.0</VersionPrefix>
4+
<VersionPrefix>0.9.0</VersionPrefix>
55
<PreReleaseVersionLabel>prerelease</PreReleaseVersionLabel>
66
<RestoreSources>
77
$(RestoreSources);

src/scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>${microsoft-spark.version}</version>
88
<properties>
99
<encoding>UTF-8</encoding>
10-
<microsoft-spark.version>0.8.0</microsoft-spark.version>
10+
<microsoft-spark.version>0.9.0</microsoft-spark.version>
1111
</properties>
1212

1313
<modules>

0 commit comments

Comments
 (0)