From 1e695cebea80d1584e4cc801a095dc4edcd32492 Mon Sep 17 00:00:00 2001 From: Joost Cassee Date: Mon, 10 Feb 2020 13:26:57 +0100 Subject: [PATCH] Release version 1.2.1 --- .goreleaser.yml | 19 +++++++++++++++++-- CHANGELOG.md | 2 +- README.md | 4 ++-- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 2a1fca1..455cbe6 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -2,10 +2,9 @@ project_name: kustomize-sopssecretgenerator env: - GO111MODULE=on - - CGO_ENABLED=0 env_files: - github_token: .githuub_token + github_token: .github_token before: hooks: @@ -13,10 +12,26 @@ before: builds: - binary: SopsSecretGenerator + env: + - CGO_ENABLED=0 + goos: + - darwin + - linux + - windows + goarch: + - amd64 archives: - format: binary +changelog: + filters: + exclude: + - '^Release version' + +checksum: + name_template: "checksums.txt" + release: github: owner: goabout diff --git a/CHANGELOG.md b/CHANGELOG.md index e0fdac5..108fb17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Development +## Version 1.2.1 * Fix sops dependency. * Use [goreleaser](https://goreleaser.com) for releases. diff --git a/README.md b/README.md index e30e1e2..defc3f9 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,9 @@ Download the `SopsSecretGenerator` binary for your platform from the move it to `$XDG_CONFIG_HOME/kustomize/plugin/goabout.com/v1beta1/sopssecretgenerator`. (By default, `$XDG_CONFIG_HOME` points to `$HOME/.config` on Linux and OS X and `%LOCALAPPDATA%` on Windows.) -For example, to install version 1.2.0 on Linux: +For example, to install version 1.2.1 on Linux: - VERSION=1.2.0 PLATFORM=linux ARCH=amd64 + VERSION=1.2.1 PLATFORM=linux ARCH=amd64 curl -Lo SopsSecretGenerator https://github.com/goabout/kustomize-sopssecretgenerator/releases/download/v${VERSION}/SopsSecretGenerator_${VERSION}_${PLATFORM}_${ARCH} chmod +x SopsSecretGenerator mkdir -p "${XDG_CONFIG_HOME:-$HOME/.config}/kustomize/plugin/goabout.com/v1beta1/sopssecretgenerator"