Skip to content

Commit c35a544

Browse files
authored
Release v0.5.0 (#272)
1 parent e50d7b2 commit c35a544

File tree

7 files changed

+66
-6
lines changed

7 files changed

+66
-6
lines changed

README.md

Lines changed: 4 additions & 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=4><a href="https://github.com/dotnet/spark/releases/tag/v0.4.0">v0.4.0</a></td>
42+
<td rowspan=5><a href="https://github.com/dotnet/spark/releases/tag/v0.5.0">v0.5.0</a></td>
4343
</tr>
4444
<tr>
4545
<td>2.4.0</td>
@@ -50,6 +50,9 @@
5050
<tr>
5151
<td>2.4.3</td>
5252
</tr>
53+
<tr>
54+
<td>2.4.4</td>
55+
</tr>
5356
<tr>
5457
<td>2.4.2</td>
5558
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></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.4.0</version>
6+
<version>0.5.0</version>
77
<inceptionYear>2019</inceptionYear>
88
<properties>
99
<encoding>UTF-8</encoding>

docs/release-notes/0.5/release-0.5.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# .NET for Apache Spark 0.5 Release Notes
2+
3+
### New Features and Improvements
4+
5+
* Support for `DeltaTable` APIs in [Delta Lake](https://github.com/delta-io/delta) ([#236](https://github.com/dotnet/spark/pull/236))
6+
* Support for Spark 2.3.4/2.4.4 ([#232](https://github.com/dotnet/spark/pull/232), [#240](https://github.com/dotnet/spark/pull/240))
7+
* Support for UDF taking a `Row` object as input ([#214](https://github.com/dotnet/spark/pull/214))
8+
* Exposing new APIs:
9+
* `Column.IsIn` ([#171](https://github.com/dotnet/spark/pull/171))
10+
* `SparkSession.Range(), *ActiveSession(), *DefaultSession()` ([#225](https://github.com/dotnet/spark/pull/225), [#266](https://github.com/dotnet/spark/pull/266))
11+
* `SparkSession.Catalog` ([#231](https://github.com/dotnet/spark/pull/231))
12+
* `SparkFiles` ([#255](https://github.com/dotnet/spark/pull/255))
13+
* `DataFrameReader.Jdbc()` ([#262](https://github.com/dotnet/spark/pull/262))
14+
* `RelationalGroupedDataset.Agg(), Sum(), Mean(), Min(), Max(), Avg()` ([#263](https://github.com/dotnet/spark/pull/263), [#265](https://github.com/dotnet/spark/pull/265))
15+
* `DataStreamWriter.PartitionBy` ([#270](https://github.com/dotnet/spark/pull/270))
16+
* Ground work to support [dotnet-try](https://github.com/dotnet/try) as C# REPL ([#251](https://github.com/dotnet/spark/pull/251))
17+
* Bug fix in generating Nuget package ([#234](https://github.com/dotnet/spark/pull/234))
18+
* Support for `MapType` ([#235](https://github.com/dotnet/spark/pull/235))
19+
20+
### Breaking Changes
21+
* None, but the new `Microsoft.Spark.Worker` needs to be used to enable UDF taking `Row` object as input ([#214](https://github.com/dotnet/spark/pull/214)).
22+
23+
### Supported Spark Versions
24+
25+
The following table outlines the supported Spark versions along with the microsoft-spark JAR to use with:
26+
27+
<table>
28+
<thead>
29+
<tr>
30+
<th>Spark Version</th>
31+
<th>microsoft-spark JAR</th>
32+
</tr>
33+
</thead>
34+
<tbody align="center">
35+
<tr>
36+
<td>2.3.*</td>
37+
<td>microsoft-spark-2.3.x-0.4.0.jar</td>
38+
</tr>
39+
<tr>
40+
<td>2.4.0</td>
41+
<td rowspan=4>microsoft-spark-2.4.x-0.4.0.jar</td>
42+
</tr>
43+
<tr>
44+
<td>2.4.1</td>
45+
</tr>
46+
<tr>
47+
<td>2.4.3</td>
48+
</tr>
49+
<tr>
50+
<td>2.4.4</td>
51+
</tr>
52+
<tr>
53+
<td>2.4.2</td>
54+
<td><a href="https://github.com/dotnet/spark/issues/60">Not supported</a></td>
55+
</tr>
56+
</tbody>
57+
</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.4.0</VersionPrefix>
4+
<VersionPrefix>0.5.0</VersionPrefix>
55
<PreReleaseVersionLabel>prerelease</PreReleaseVersionLabel>
66
<RestoreSources>
77
$(RestoreSources);

src/scala/microsoft-spark-2.3.x/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.scala</groupId>
66
<artifactId>microsoft-spark</artifactId>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
</parent>
99
<artifactId>microsoft-spark-2.3.x</artifactId>
1010
<inceptionYear>2019</inceptionYear>

src/scala/microsoft-spark-2.4.x/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.microsoft.scala</groupId>
66
<artifactId>microsoft-spark</artifactId>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
</parent>
99
<artifactId>microsoft-spark-2.4.x</artifactId>
1010
<inceptionYear>2019</inceptionYear>

src/scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.scala</groupId>
55
<artifactId>microsoft-spark</artifactId>
66
<packaging>pom</packaging>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
<properties>
99
<encoding>UTF-8</encoding>
1010
</properties>

0 commit comments

Comments
 (0)