From 990bb023d743732bd59ddc86658de413fd1cad58 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Wed, 19 Jan 2022 18:27:41 +0100 Subject: [PATCH] Releasing 0.8.0 --- CHANGELOG.md | 2 +- README.md | 12 ++++++------ examples/scala/pom.xml | 2 +- pom.xml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cfbb184..031f7a65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ 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/). -## [UNRELEASED] - YYYY-MM-DD +## [0.8.0] - 2022-01-19 ### Changed - Moved Java Dgraph client to 21.12.0. diff --git a/README.md b/README.md index 702e3c66..e0c43743 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,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, Spark 3.1 and Spark 3.2, all with Scala 2.12. Use Maven artifact ID `spark-dgraph-connector_2.12`. The Spark version is part of the package version, -i.e. 0.7.0-2.4, 0.7.0-3.0, 0.7.0-3.1 and 0.7.0-3.2, respectively. +i.e. 0.8.0-2.4, 0.8.0-3.0, 0.8.0-3.1 and 0.8.0-3.2, 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). @@ -74,7 +74,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.1: ```sbt -libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.7.0-3.1" +libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.8.0-3.1" ``` ### Maven @@ -85,7 +85,7 @@ Add this dependency to your `pom.xml` file to use the latest version: uk.co.gresearch.spark spark-dgraph-connector_2.12 - 0.7.0-3.1 + 0.8.0-3.1 ``` @@ -94,7 +94,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.7.0-3.1 +spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.1 ``` ### PySpark Shell and Python script @@ -102,13 +102,13 @@ spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.7.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.7.0-3.1 +pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.1 ``` 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.7.0-3.1 [script.py] +spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.1 [script.py] ``` ## Examples diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml index 16862134..16e8e6c8 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.8.0-3.1-SNAPSHOT + 0.8.0-3.1 Spark Dgraph Connector Example diff --git a/pom.xml b/pom.xml index b46622d5..432efb4d 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 uk.co.gresearch.spark spark-dgraph-connector_2.12 - 0.8.0-3.1-SNAPSHOT + 0.8.0-3.1 Spark Dgraph Connector A Spark connector for Dgraph databases 2020