mirror of
https://github.com/acaloiaro/ess
synced 2026-07-21 18:29:08 +00:00
bump release version
This commit is contained in:
parent
9ba79170e7
commit
0f44c164ae
3 changed files with 7 additions and 7 deletions
|
|
@ -156,7 +156,7 @@ This utility can be used as a [pre-commit plugin](https://pre-commit.com/#instal
|
|||
cat <<EOF > .pre-commit-config.yaml
|
||||
repos:
|
||||
- repo: https://github.com/acaloiaro/ess.git
|
||||
rev: v2.14.0
|
||||
rev: v2.14.1
|
||||
hooks:
|
||||
- id: ess
|
||||
EOF
|
||||
|
|
@ -214,7 +214,7 @@ It's even possible to provide default/example values for every environment varia
|
|||
```yml
|
||||
repos:
|
||||
- repo: https://github.com/acaloiaro/ess.git
|
||||
rev: v2.14.0
|
||||
rev: v2.14.1
|
||||
hooks:
|
||||
- id: ess
|
||||
```
|
||||
|
|
@ -224,7 +224,7 @@ repos:
|
|||
```yml
|
||||
repos:
|
||||
- repo: https://github.com/acaloiaro/ess.git
|
||||
rev: v2.14.0
|
||||
rev: v2.14.1
|
||||
hooks:
|
||||
- id: ess
|
||||
args: ['--env-file=.env_file', '--sample-file=env_file.sample']
|
||||
|
|
@ -239,7 +239,7 @@ environment variable name surrounded by `<brackets like this>` in sample files.
|
|||
```yml
|
||||
repos:
|
||||
- repo: https://github.com/acaloiaro/ess.git
|
||||
rev: v2.14.0
|
||||
rev: v2.14.1
|
||||
hooks:
|
||||
- id: ess
|
||||
args: [--example=FOO="Provide your foo here", --example=BAR="You can fetch bars from https://example.com/bars"]
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
buildGoApplication {
|
||||
pname = "ess";
|
||||
version = "2.14.0";
|
||||
version = "2.14.1";
|
||||
pwd = ./.;
|
||||
src = ./.;
|
||||
modules = ./gomod2nix.toml;
|
||||
|
|
|
|||
4
main.go
4
main.go
|
|
@ -18,8 +18,8 @@ import (
|
|||
"github.com/hashicorp/go-envparse"
|
||||
)
|
||||
|
||||
const VERSION = "2.14.0"
|
||||
const BUILD_DATE = "2024-10-10T18:01:34+00:00"
|
||||
const VERSION = "2.14.1"
|
||||
const BUILD_DATE = "2024-12-12T19:42:19+00:00"
|
||||
|
||||
type exampleFlag map[string]string
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue