Skip to content

Commit 3b72c48

Browse files
Niharikaduttaimback82
authored andcommitted
Prep 0.8.0 release (#390)
1 parent 448278d commit 3b72c48

File tree

5 files changed

+51
-4
lines changed

5 files changed

+51
-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=5><a href="https://github.com/dotnet/spark/releases/tag/v0.7.0">v0.7.0</a></td>
42+
<td rowspan=5><a href="https://github.com/dotnet/spark/releases/tag/v0.8.0">v0.8.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.7.0</version>
6+
<version>0.8.0</version>
77
<inceptionYear>2019</inceptionYear>
88
<properties>
99
<encoding>UTF-8</encoding>

docs/release-notes/0.8/release-0.8.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# .NET for Apache Spark 0.8 Release Notes
2+
3+
### New Features and Improvements
4+
5+
* Support for Row type Ser/De and exposing the CreateDataFrame API ([#338](https://github.com/dotnet/spark/pull/338))
6+
* Support .NET Core 3.1 ([#291](https://github.com/dotnet/spark/pull/291) and [#386](https://github.com/dotnet/spark/pull/386))
7+
* Support for new Delta v0.5.0 APIs ([#374](https://github.com/dotnet/spark/pull/374))
8+
* Precompute the normalized type names of DataTypes and use string.Create on NS2.1 for faster normalization ([#364](https://github.com/dotnet/spark/pull/364))
9+
10+
### Breaking Changes
11+
* None
12+
13+
### Supported Spark Versions
14+
15+
The following table outlines the supported Spark versions along with the microsoft-spark JAR to use with:
16+
17+
<table>
18+
<thead>
19+
<tr>
20+
<th>Spark Version</th>
21+
<th>microsoft-spark JAR</th>
22+
</tr>
23+
</thead>
24+
<tbody align="center">
25+
<tr>
26+
<td>2.3.*</td>
27+
<td>microsoft-spark-2.3.x-0.8.0.jar</td>
28+
</tr>
29+
<tr>
30+
<td>2.4.0</td>
31+
<td rowspan=4>microsoft-spark-2.4.x-0.8.0.jar</td>
32+
</tr>
33+
<tr>
34+
<td>2.4.1</td>
35+
</tr>
36+
<tr>
37+
<td>2.4.3</td>
38+
</tr>
39+
<tr>
40+
<td>2.4.4</td>
41+
</tr>
42+
<tr>
43+
<td>2.4.2</td>
44+
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></td>
45+
</tr>
46+
</tbody>
47+
</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.7.0</VersionPrefix>
4+
<VersionPrefix>0.8.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.7.0</microsoft-spark.version>
10+
<microsoft-spark.version>0.8.0</microsoft-spark.version>
1111
</properties>
1212

1313
<modules>

0 commit comments

Comments
 (0)