Skip to content

Commit d7efaad

Browse files
committed
Releasing 0.11.0
1 parent eeb3629 commit d7efaad

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
## [0.11.0] - 2024-01-09
7+
8+
### Added
9+
- Detect and partition sparse region of UIDs ([pull #224](https://github.com/G-Research/spark-dgraph-connector/pull/224))
10+
611
## [0.10.0] - 2023-05-03
712

813
### Changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ The connector has the following known limitations:
8181

8282
The Spark Dgraph Connector is available for Spark 3.0, 3.1, 3.2, 3.3, 3.4 and 3.5, with Scala 2.12 and 2.13.
8383
Use Maven artifact ID `spark-dgraph-connector_2.12` or `spark-dgraph-connector_2.12`. The Spark version is part of the package version,
84-
i.e. 0.10.0-3.0, 0.10.0-3.1, 0.10.0-3.2, 0.10.0-3.3, 0.10.0-3.4 and 0.10.0-3.5, respectively.
84+
i.e. 0.11.0-3.0, 0.11.0-3.1, 0.11.0-3.2, 0.11.0-3.3, 0.11.0-3.4 and 0.11.0-3.5, respectively.
8585

8686
### SBT
8787

8888
Add this line to your `build.sbt` file to use the latest version for Spark 3.5:
8989

9090
```sbt
91-
libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.10.0-3.5"
91+
libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.11.0-3.5"
9292
```
9393

9494
### Maven
@@ -99,7 +99,7 @@ Add this dependency to your `pom.xml` file to use the latest version:
9999
<dependency>
100100
<groupId>uk.co.gresearch.spark</groupId>
101101
<artifactId>spark-dgraph-connector_2.13</artifactId>
102-
<version>0.10.0-3.5</version>
102+
<version>0.11.0-3.5</version>
103103
</dependency>
104104
```
105105

@@ -108,21 +108,21 @@ Add this dependency to your `pom.xml` file to use the latest version:
108108
Launch the Scala Spark REPL (Spark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
109109

110110
```shell script
111-
spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-3.5
111+
spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11.0-3.5
112112
```
113113

114114
### PySpark Shell and Python script
115115

116116
Launch the Python Spark REPL (pyspark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
117117

118118
```shell script
119-
pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-3.5
119+
pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11.0-3.5
120120
```
121121

122122
Run your Python scripts that use PySpark (pyspark ≥3.0.0) and the Spark Dgraph Connector (version ≥0.5.0) via `spark-submit`:
123123

124124
```shell script
125-
spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-3.5 [script.py]
125+
spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11.0-3.5 [script.py]
126126
```
127127

128128
## Examples

examples/scala/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>uk.co.gresearch.spark</groupId>
44
<artifactId>spark-dgraph-connector-examples_2.12</artifactId>
5-
<version>0.11.0-3.5-SNAPSHOT</version>
5+
<version>0.11.0-3.5</version>
66
<name>Spark Dgraph Connector Example</name>
77

88
<properties>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>uk.co.gresearch.spark</groupId>
44
<artifactId>spark-dgraph-connector_2.12</artifactId>
5-
<version>0.11.0-3.5-SNAPSHOT</version>
5+
<version>0.11.0-3.5</version>
66
<name>Spark Dgraph Connector</name>
77
<description>A Spark connector for Dgraph databases</description>
88
<inceptionYear>2020</inceptionYear>

0 commit comments

Comments
 (0)