From 77fdc93a2343365477dc9fa97d9c002a67218d0c Mon Sep 17 00:00:00 2001 From: Jonathan Shook Date: Wed, 6 May 2020 13:23:38 -0500 Subject: [PATCH] updated nosqlbench invite link --- .../resources/docs-for-nb/nosqlbench/getting_support.md | 9 +++++++-- scripts/release-notes.sh | 7 +++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/engine-docs/src/main/resources/docs-for-nb/nosqlbench/getting_support.md b/engine-docs/src/main/resources/docs-for-nb/nosqlbench/getting_support.md index 1edb8f878..1445f35db 100644 --- a/engine-docs/src/main/resources/docs-for-nb/nosqlbench/getting_support.md +++ b/engine-docs/src/main/resources/docs-for-nb/nosqlbench/getting_support.md @@ -26,11 +26,16 @@ are automatically included when NoSQLBench is built. ## NoSQLBench Slack -There is a new -[slack channel](https://join.slack.com/t/nosqlbench/shared_invite/zt-cu9f2jpe-XiHN3SsUDcjkVgxaURFuaw) for NoSQLBench. +There is a new slack channel at nosqlbench.slack.com. In order to access the slack channel, you'll need an invite. You +can get that through this simple form, which will send you an invite in email: +[Slack Invite](https://docs.google.com/forms/d/e/1FAIpQLSdUOJ8iAPqyxsLfh1nBBsKShI53RAeuzYW4bKExmRMWjj4ufQ/viewform). +This is just a simple google form that automates the invite process. + Please join it if you are a new or existing NoSQLBench user and help us get it going! + + ## General Feedback These guidelines are mirrored at the diff --git a/scripts/release-notes.sh b/scripts/release-notes.sh index 6570a8371..b53e89727 100755 --- a/scripts/release-notes.sh +++ b/scripts/release-notes.sh @@ -3,10 +3,17 @@ set -e #RELEASE_NOTES_FILE=${RELEASE_NOTES_FILE:?RELEASE_NOTES_FILE must be provided} git log --oneline --decorate --max-count=1000 master > /tmp/gitlog_master +(( release_count=0 )) + readarray lines < /tmp/gitlog_master for line in "${lines[@]}" do if [[ $line =~ \(tag:\ nosqlbench-[0-9]+\.[0-9]+\.[0-9]+\).+ ]] + then release_count++ + if (( release_count>=2 )) + then break + fi + fi then break elif [[ $line =~ \[maven-release-plugin\] ]] then continue