From daa482d6a99a4bb50f1ef42013c4f893b1ddb0f8 Mon Sep 17 00:00:00 2001 From: hkernbach Date: Thu, 22 Aug 2024 16:55:44 +0200 Subject: [PATCH] introduced changelog, increased version number --- CHANGELOG | 9 +++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 00000000..4b94b5eb --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,9 @@ +0.0.8 (2024-08-22) +------------------- + +* In case a user does not have permission to detect the ArangoDB environment + related information, like e.g. the shardDistribution, right now we cannot + detect which data loading strategy to choose from. In this case, we fallback + to the AQL variant as this always works. Still, if the fallback happens, + a warning message will be printed. Using the AQL variant will be slower + compared to the dump strategy variant. diff --git a/Cargo.toml b/Cargo.toml index c0eacf0a..d5283b66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arangors-graph-exporter" -version = "0.0.7" +version = "0.0.8" edition = "2021" description = "Provides lightning-fast graph data access to ArangoDB" diff --git a/README.md b/README.md index 7ec87445..b5b23eb8 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -arangors-graph-exporter = "0.0.7" +arangors-graph-exporter = "0.0.8" ``` ## Usage