diff --git a/Cargo.lock b/Cargo.lock index 9608af1..bf9804f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2161,7 +2161,7 @@ dependencies = [ [[package]] name = "yage" -version = "0.2.0" +version = "0.3.0" dependencies = [ "age", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 40e5984..fff5740 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yage" -version = "0.2.0" +version = "0.3.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 24da9d3..decc7f8 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.2.0/yage-0.2.0-linux-amd64.tar.gz | tar xzf - -C ~/.local/bin --strip-components=1 +curl -ssL https://github.com/glehmann/yage/releases/download/0.3.0/yage-0.3.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.2.0/yage-0.2.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.2.0 encrypt -iR prod.pub secrets.yaml +docker run --rm -t -v $(pwd):/src ghcr.io/glehmann/yage:0.3.0 encrypt -iR prod.pub secrets.yaml ~~~ ### From source @@ -245,7 +245,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.2.0 + rev: 0.3.0 hooks: - id: yage-detect files: "secrets-.+\\.yaml" @@ -259,7 +259,7 @@ committing them: ```yaml repos: - repo: https://github.com/glehmann/yage - rev: 0.2.0 + rev: 0.3.0 hooks: - id: yage-encrypt files: "secrets-prod-.+\\.yaml" diff --git a/doc/yage.1 b/doc/yage.1 index 346db22..5542260 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.2.0" +.TH yage 1 "yage 0.3.0" .SH NAME yage \- A simple tool to manage encrypted secrets in YAML files with age encryption .SH SYNOPSIS @@ -53,6 +53,6 @@ Convert private age keys to their public key yage\-help(1) Print this message or the help of the given subcommand(s) .SH VERSION -v0.2.0 +v0.3.0 .SH AUTHORS Gaëtan Lehmann