Skip to content

Commit 49b7cd7

Browse files
committed
Make pre-release script happy
Signed-off-by: clux <[email protected]>
1 parent 89b9e5f commit 49b7cd7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github
1717
```toml
1818
[dependencies]
1919
kube = { version = "0.88.1", features = ["runtime", "derive"] }
20-
k8s-openapi = { version = "0.21.0", features = ["latest"] }
20+
k8s-openapi = { version = "0.21.1", features = ["latest"] }
2121
```
2222

2323
[Features are available](https://github.com/kube-rs/kube/blob/main/kube/Cargo.toml#L18).

scripts/release-pre.sh

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ sanity() {
2121
RECOMMENDED_K8S_OPENAPI="$(rg "k8s-openapi =" README.md | head -n 1)" # only check first instance
2222
if ! [[ $RECOMMENDED_K8S_OPENAPI =~ $USED_K8S_OPENAPI ]]; then
2323
echo "prerelease: abort: recommending k8s-openapi pinned to a different version to what we use"
24+
echo "${RECOMMENDED_K8S_OPENAPI} vs. used: ${USED_K8S_OPENAPI}"
2425
exit 1
2526
fi
2627
# TODO: verify versions of tools for release?

0 commit comments

Comments
 (0)