diff --git a/CHANGELOG.md b/CHANGELOG.md
index 46ab797d..4c451773 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
+## [0.11.0] - 2024-01-09
+
+### Added
+- Detect and partition sparse region of UIDs ([pull #224](https://github.com/G-Research/spark-dgraph-connector/pull/224))
+
## [0.10.0] - 2023-05-03
### Changed
diff --git a/README.md b/README.md
index a2b76da7..d6538fa7 100644
--- a/README.md
+++ b/README.md
@@ -81,14 +81,14 @@ The connector has the following known limitations:
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.
Use Maven artifact ID `spark-dgraph-connector_2.12` or `spark-dgraph-connector_2.12`. The Spark version is part of the package version,
-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.
+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.
### SBT
Add this line to your `build.sbt` file to use the latest version for Spark 3.5:
```sbt
-libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.10.0-3.5"
+libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.11.0-3.5"
```
### Maven
@@ -99,7 +99,7 @@ Add this dependency to your `pom.xml` file to use the latest version:
uk.co.gresearch.spark
spark-dgraph-connector_2.13
- 0.10.0-3.5
+ 0.11.0-3.5
```
@@ -108,7 +108,7 @@ Add this dependency to your `pom.xml` file to use the latest version:
Launch the Scala Spark REPL (Spark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
```shell script
-spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-3.5
+spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11.0-3.5
```
### PySpark Shell and Python script
@@ -116,13 +116,13 @@ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-
Launch the Python Spark REPL (pyspark ≥3.0.0) with the Spark Dgraph Connector dependency (version ≥0.5.0) as follows:
```shell script
-pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-3.5
+pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11.0-3.5
```
Run your Python scripts that use PySpark (pyspark ≥3.0.0) and the Spark Dgraph Connector (version ≥0.5.0) via `spark-submit`:
```shell script
-spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.10.0-3.5 [script.py]
+spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.11.0-3.5 [script.py]
```
## Examples
diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml
index c019667e..5fceb338 100644
--- a/examples/scala/pom.xml
+++ b/examples/scala/pom.xml
@@ -2,7 +2,7 @@
4.0.0
uk.co.gresearch.spark
spark-dgraph-connector-examples_2.12
- 0.11.0-3.5-SNAPSHOT
+ 0.11.0-3.5
Spark Dgraph Connector Example
diff --git a/pom.xml b/pom.xml
index 344a2dfa..16a0903d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,7 +2,7 @@
4.0.0
uk.co.gresearch.spark
spark-dgraph-connector_2.12
- 0.11.0-3.5-SNAPSHOT
+ 0.11.0-3.5
Spark Dgraph Connector
A Spark connector for Dgraph databases
2020