Skip to content

Commit

Permalink
Make pre-release script happy
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Mar 26, 2024
1 parent 89b9e5f commit 49b7cd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github
```toml
[dependencies]
kube = { version = "0.88.1", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.21.0", features = ["latest"] }
k8s-openapi = { version = "0.21.1", features = ["latest"] }
```

[Features are available](https://github.com/kube-rs/kube/blob/main/kube/Cargo.toml#L18).
Expand Down
1 change: 1 addition & 0 deletions scripts/release-pre.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ sanity() {
RECOMMENDED_K8S_OPENAPI="$(rg "k8s-openapi =" README.md | head -n 1)" # only check first instance
if ! [[ $RECOMMENDED_K8S_OPENAPI =~ $USED_K8S_OPENAPI ]]; then
echo "prerelease: abort: recommending k8s-openapi pinned to a different version to what we use"
echo "${RECOMMENDED_K8S_OPENAPI} vs. used: ${USED_K8S_OPENAPI}"
exit 1
fi
# TODO: verify versions of tools for release?
Expand Down

0 comments on commit 49b7cd7

Please sign in to comment.