From 3d687887dcf04ac3b4c40fff881ee4ac02360a6b Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Sat, 2 Oct 2021 22:50:54 +0200 Subject: [PATCH] Releasing 0.7.0 --- CHANGELOG.md | 5 +++++ README.md | 12 ++++++------ examples/scala/pom.xml | 2 +- pom.xml | 2 +- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5005966..56c3c4eb 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.7.0] - 2021-10-02 + +### 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 aa90fbf0..41989faa 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 2.4: ```sbt -libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.6.0-2.4" +libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.7.0-2.4" ``` ### 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-2.4 + 0.7.0-2.4 ``` @@ -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-2.4 +spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.0-2.4 ``` ### PySpark Shell and Python script @@ -100,13 +100,13 @@ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.6.0-2 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-2.4 +pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.0-2.4 ``` 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-2.4 [script.py] +spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.0-2.4 [script.py] ``` ## Examples diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml index 7573b598..b1440bb4 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-2.4-SNAPSHOT + 0.7.0-2.4 Spark Dgraph Connector Example diff --git a/pom.xml b/pom.xml index e0a5d054..dabd0d15 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-2.4-SNAPSHOT + 0.7.0-2.4 Spark Dgraph Connector A Spark connector for Dgraph databases 2020