From bee698ef480b74c323fdbb76ce60d65364ac854c Mon Sep 17 00:00:00 2001 From: Ilia Moshkov Date: Sat, 28 Jan 2023 00:44:18 +0400 Subject: [PATCH] Delete lasted Ruby references (#1107) # Description Looks like recently closed [PR#1102](https://github.com/delta-io/delta-rs/pull/1102) missed some Ruby references. This PR cleaned the rest. Co-authored-by: Ilya Moshkov --- .github/CODEOWNERS | 1 - .github/workflows/dev_pr/labeler.yml | 3 --- .ignore | 3 --- README.adoc | 2 +- dev/release/update_change_log.sh | 8 +++----- 5 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 534fac74ee..89a426dae1 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -3,5 +3,4 @@ proofs/ @houqp python/ @wjones127 @fvaleye @rtyler @roeap @houqp dynamodbb_lock/ @mosyp @houqp @xianwill aws/delta-checkpoint/ @xianwill @houqp @rtyler @mosyp -ruby/ @rtyler tlaplus/ @houqp diff --git a/.github/workflows/dev_pr/labeler.yml b/.github/workflows/dev_pr/labeler.yml index 974b6dfe96..82b44e5770 100644 --- a/.github/workflows/dev_pr/labeler.yml +++ b/.github/workflows/dev_pr/labeler.yml @@ -9,9 +9,6 @@ rust: binding/python: - python/**/* -binding/ruby: - - ruby/**/* - ci: - .github/**.* diff --git a/.ignore b/.ignore index 498797c3f2..099f8a5b9c 100644 --- a/.ignore +++ b/.ignore @@ -1,5 +1,2 @@ # This file is used by cargo-watch -ruby/spec -ruby/lib - .idea \ No newline at end of file diff --git a/README.adoc b/README.adoc index 52ec7d7747..e08eb45d9b 100644 --- a/README.adoc +++ b/README.adoc @@ -21,7 +21,7 @@ used with data processing frameworks like link:https://github.com/apache/arrow-datafusion[datafusion], link:https://github.com/apache/arrow-datafusion/tree/master/ballista[ballista], link:https://github.com/pola-rs/polars[polars], -link:https://github.com/rajasekarv/vega[vega], etc. It also provides bindings to other higher level languages such as link:https://delta-io.github.io/delta-rs/python/[Python] or Ruby. +link:https://github.com/rajasekarv/vega[vega], etc. It also provides bindings to other higher level language link:https://delta-io.github.io/delta-rs/python/[Python]. === Features diff --git a/dev/release/update_change_log.sh b/dev/release/update_change_log.sh index 48efc45e6d..816b1d27ec 100755 --- a/dev/release/update_change_log.sh +++ b/dev/release/update_change_log.sh @@ -17,13 +17,11 @@ FUTURE_RELEASE="0.6.0" # only consider tags of the correct language if [ "$LANGUAGE" == "rust" ]; then - EXCLUDED_LANGUAGES_REGEX="python.*|ruby.*" + EXCLUDED_LANGUAGES_REGEX="python.*" elif [ "$LANGUAGE" == "python" ]; then - EXCLUDED_LANGUAGES_REGEX="ruby.*|rust.*" -elif [ "$LANGUAGE" == "ruby" ]; then - EXCLUDED_LANGUAGES_REGEX="python.*|rust.*" + EXCLUDED_LANGUAGES_REGEX="rust.*" else - echo "Language $LANGUAGE is invalid. Should be one of Python, Ruby and Rust." + echo "Language $LANGUAGE is invalid. Should be one of Python and Rust." fi SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"