From 696f2c51af01533d3f0fffb6d69da9fa32239571 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Wed, 19 Jan 2022 18:18:18 +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 a018413e..7f31f8e5 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.2: ```sbt -libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.7.0-3.2" +libraryDependencies += "uk.co.gresearch.spark" %% "spark-dgraph-connector" % "0.8.0-3.2" ``` ### 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.2 + 0.8.0-3.2 ``` @@ -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.2 +spark-shell --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.2 ``` ### 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.2 +pyspark --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.2 ``` 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.2 [script.py] +spark-submit --packages uk.co.gresearch.spark:spark-dgraph-connector_2.12:0.8.0-3.2 [script.py] ``` ## Examples diff --git a/examples/scala/pom.xml b/examples/scala/pom.xml index 3926de55..e9f5d409 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.2-SNAPSHOT + 0.8.0-3.2 Spark Dgraph Connector Example diff --git a/pom.xml b/pom.xml index 28ec7f58..c4fc6341 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.2-SNAPSHOT + 0.8.0-3.2 Spark Dgraph Connector A Spark connector for Dgraph databases 2020