From 8d63fe6b34899cb9d62b15c0bb74456f95c0f7c4 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Fri, 1 Oct 2021 10:01:25 +0200 Subject: [PATCH] Releasing 0.7.0 --- CHANGELOG.md | 8 ++++++++ README.md | 12 ++++++------ examples/scala/pom.xml | 2 +- pom.xml | 2 +- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5077dd5d..bf87fbe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ 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.7.0] - 2021-10-01 + +### Changed +- Moved Java Dgraph client to 21.03.1. + +### Fixed +- Support latest dgraph release 21.03.0 (#101) + ## [0.6.0] - 2021-03-05 ### Added diff --git a/README.md b/README.md index aad594ac..0d00e93d 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ The connector is under continuous development. It has the following known limita The Spark Dgraph Connector is available for Spark 2.4, Spark 3.0 and Spark 3.1, all with Scala 2.12. Use Maven artifact ID `spark-dgraph-connector_2.12`. The Spark version is part of the package version, -e.g. 0.6.0-2.4, 0.6.0-3.0 and 0.6.0-3.1, respectively. +e.g. 0.7.0-2.4, 0.7.0-3.0 and 0.7.0-3.1, respectively. Minor versions are kept in sync between those two packages, such that identical minor versions contain identical feature sets (where supported by the respective Spark version). @@ -72,7 +72,7 @@ such that identical minor versions contain identical feature sets Add this line to your `build.sbt` file to use the latest version for Spark 3.0: ```sbt -libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.6.0-3.0" +libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.7.0-3.0" ``` ### Maven @@ -83,7 +83,7 @@ Add this dependency to your `pom.xml` file to use the latest version: uk.co.gresearch.spark spark-dgraph-connector_2.12 - 0.6.0-3.0 + 0.7.0-3.0 ``` @@ -92,7 +92,7 @@ Add this dependency to your `pom.xml` file to use the latest version: Launch the Scala Spark REPL (Spark ≥2.4.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.6.0-3.0 +spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.0-3.0 ``` ### PySpark Shell and Python script @@ -100,13 +100,13 @@ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.6.0-3 Launch the Python Spark REPL (pyspark 2.4.2 and ≥3.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.6.0-3.0 +pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.0-3.0 ``` Run your Python scripts that use PySpark (pyspark 2.4.2 and ≥3.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.6.0-3.0 [script.py] +spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.0-3.0 [script.py] ``` ## Examples diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml index 21fbe181..56f3470c 100644 --- a/examples/scala/pom.xml +++ b/examples/scala/pom.xml @@ -3,7 +3,7 @@ uk.co.gresearch.spark spark-dgraph-connector-examples_2.12 - 0.7.0-3.0-SNAPSHOT + 0.7.0-3.0 Spark Dgraph Connector Example diff --git a/pom.xml b/pom.xml index ee25e2e3..a7087a48 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 uk.co.gresearch.spark spark-dgraph-connector_2.12 - 0.7.0-3.0-SNAPSHOT + 0.7.0-3.0 Spark Dgraph Connector A Spark connector for Dgraph databases 2020