From 56586dbb26dc35d59c9ae5f4c141e7ecb2fbd49a Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Mon, 1 Jul 2019 13:10:19 -0700 Subject: [PATCH] reference: fix api grouping in reference docs (#1561) This bumps the `gen-crd-api-reference-docs` to v0.1.5 which has two notable fixes impacting Knative: 1. Prevent types in same apiGroup but different apiVersion (e.g v1beta1 vs v1alpha1) from grouped together. 2. De-duplicate the apiGroups list when types belonging to that api group come from different Go packages. Fixes #1559. Signed-off-by: Ahmet Alp Balkan --- hack/gen-api-reference-docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/gen-api-reference-docs.sh b/hack/gen-api-reference-docs.sh index fcb821e08ae..240b4ace58f 100755 --- a/hack/gen-api-reference-docs.sh +++ b/hack/gen-api-reference-docs.sh @@ -23,7 +23,7 @@ SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" REFDOCS_PKG="github.com/ahmetb/gen-crd-api-reference-docs" REFDOCS_REPO="https://${REFDOCS_PKG}.git" -REFDOCS_VER="v0.1.4" +REFDOCS_VER="v0.1.5" KNATIVE_SERVING_REPO="github.com/knative/serving" KNATIVE_SERVING_COMMIT="${KNATIVE_SERVING_COMMIT:?specify the \$KNATIVE_SERVING_COMMIT variable}"