From e9bd6f7332aa01fd1130116d5703b194fa1e5e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Lehmann?= Date: Sun, 18 Feb 2024 17:10:43 +0100 Subject: [PATCH] bump version to 0.5.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 8 ++++---- doc/yage.1 | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5415919..45fdba3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2170,7 +2170,7 @@ dependencies = [ [[package]] name = "yage" -version = "0.4.0" +version = "0.5.0" dependencies = [ "age", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index f627c86..73baf37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yage" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["Gaëtan Lehmann "] description = "A simple tool to manage encrypted secrets in YAML files with age encryption" diff --git a/README.md b/README.md index 5d3b191..90028c0 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ platform, extract it and put the `yage` binary in a directory in your `PATH`. For example on linux with an intel/amd64 processor, you can run the following commands to install `yage` in `~/.local/bin`: ```sh -curl -ssL https://github.com/glehmann/yage/releases/download/0.4.0/yage-0.4.0-linux-amd64.tar.gz | tar xzf - -C ~/.local/bin --strip-components=1 +curl -ssL https://github.com/glehmann/yage/releases/download/0.5.0/yage-0.5.0-linux-amd64.tar.gz | tar xzf - -C ~/.local/bin --strip-components=1 ``` ### Docker @@ -61,7 +61,7 @@ curl -ssL https://github.com/glehmann/yage/releases/download/0.4.0/yage-0.4.0-li Here is how you can use it to encrypt a file in place: ~~~sh -docker run --rm -t -v $(pwd):/src ghcr.io/glehmann/yage:0.4.0 encrypt -iR prod.pub secrets.yaml +docker run --rm -t -v $(pwd):/src ghcr.io/glehmann/yage:0.5.0 encrypt -iR prod.pub secrets.yaml ~~~ ### From source @@ -253,7 +253,7 @@ uses `yage` to detect the non-encrypted secrets in a YAML file before committing ```yaml repos: - repo: https://github.com/glehmann/yage - rev: 0.4.0 + rev: 0.5.0 hooks: - id: yage-detect files: "secrets-.+\\.yaml" @@ -267,7 +267,7 @@ committing them: ```yaml repos: - repo: https://github.com/glehmann/yage - rev: 0.4.0 + rev: 0.5.0 hooks: - id: yage-encrypt files: "secrets-prod-.+\\.yaml" diff --git a/doc/yage.1 b/doc/yage.1 index ffd1369..610afb8 100644 --- a/doc/yage.1 +++ b/doc/yage.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH yage 1 "yage 0.4.0" +.TH yage 1 "yage 0.5.0" .SH NAME yage \- A simple tool to manage encrypted secrets in YAML files with age encryption .SH SYNOPSIS @@ -59,6 +59,6 @@ Re\-encrypt the values in a YAML file yage\-help(1) Print this message or the help of the given subcommand(s) .SH VERSION -v0.4.0 +v0.5.0 .SH AUTHORS Gaëtan Lehmann