From ba6c8ac0922ec6df49164c30c4a1d238c8091525 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 21 Nov 2024 14:22:34 +0100 Subject: [PATCH] Release v0.6.2 --- CHANGELOG.md | 9 +++++++++ README.md | 3 ++- version.go | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbf790a..4540cc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ +0.6.2 / 2024-11-21 +================== + + * feat: handle graceful shutdown (#64) + * fix: expose cleanup errors (#62) + * feat: add option to ignore missing deployment (#33) + * fix(cleanup): inactivate all deployment related to PR environment + * chore: lots of nix and go module updates + 0.6.1 / 2022-06-28 ================== diff --git a/README.md b/README.md index 082e157..ba61480 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ git commit checked out. ## Usage `$ ./github-deploy --help` + ``` NAME: github-deploy - A CLI that integrates deployments with github @@ -26,7 +27,7 @@ USAGE: github-deploy [global options] command [command options] [arguments...] VERSION: - 0.6.1 + 0.6.2 AUTHOR: zimbatm diff --git a/version.go b/version.go index 526f39c..e4a5f5f 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package main const ( Name string = "github-deploy" - Version string = "0.6.1" + Version string = "0.6.2" )