Skip to content

Commit

Permalink
bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glehmann committed Feb 11, 2024
1 parent 695d61c commit b6f6514
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yage"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Gaëtan Lehmann <gaetan.lehmann@gmail.com>"]
description = "A simple tool to manage encrypted secrets in YAML files with age encryption"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions doc/yage.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 <gaetan.lehmann@gmail.com>

0 comments on commit b6f6514

Please sign in to comment.