From 6a1c017f93f0268bc31c291746e2e7a0a882c65f Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Thu, 16 May 2024 15:09:56 -0700 Subject: [PATCH] chore: v0.2.9 (#445) --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5cbbebf..0ad35e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,7 +278,7 @@ checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" [[package]] name = "linkerd-await" -version = "0.2.8" +version = "0.2.9" dependencies = [ "clap", "futures", diff --git a/Cargo.toml b/Cargo.toml index 4da34d7..0341fe7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linkerd-await" -version = "0.2.8" +version = "0.2.9" authors = ["Linkerd Developers "] edition = "2021" publish = false diff --git a/README.md b/README.md index 8c30c47..a84e81c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ only then executes a command. ## Usage ```text -linkerd-await 0.2.8 +linkerd-await 0.2.9 Wait for linkerd to become ready before running a program Usage: linkerd-await [OPTIONS] [CMD] [ARGS]... @@ -41,7 +41,7 @@ Options: ```dockerfile # Create a base layer with linkerd-await from a recent release. FROM docker.io/curlimages/curl:latest as linkerd -ARG LINKERD_AWAIT_VERSION=v0.2.8 +ARG LINKERD_AWAIT_VERSION=v0.2.9 RUN curl -sSLo /tmp/linkerd-await https://github.com/linkerd/linkerd-await/releases/download/release%2F${LINKERD_AWAIT_VERSION}/linkerd-await-${LINKERD_AWAIT_VERSION}-amd64 && \ chmod 755 /tmp/linkerd-await