From c83dcd5512bce96e7ccf2fdd3048a204613a5fab Mon Sep 17 00:00:00 2001 From: Adam Ross Date: Fri, 10 Nov 2017 20:19:43 -0800 Subject: [PATCH 1/3] Switch command logging from yellow to magenta. (#120) --- util/shell_exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/shell_exec.go b/util/shell_exec.go index a3d0fea..ed021ce 100644 --- a/util/shell_exec.go +++ b/util/shell_exec.go @@ -114,7 +114,7 @@ func (x Executor) Start() error { // Log verbosely logs the command. func (x Executor) Log(tag string) { - color.Set(color.FgYellow) + color.Set(color.FgMagenta) Logger().Verbose.Printf("%s: %s", tag, x.ToString()) color.Unset() } From 78bdc74b7b93c1f9ecf9083ecb1fdf2b25f36179 Mon Sep 17 00:00:00 2001 From: Frank Febbraro Date: Mon, 13 Nov 2017 10:38:12 -0800 Subject: [PATCH 2/3] Moved github releases out of draft --- .goreleaser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 91337c0..034f940 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -29,7 +29,7 @@ release: github: owner: phase2 name: rig - draft: true +# draft: true # This also prevents a homebrew release from getting generated # Publishing Homebrew Formula to the Tap repo brew: From 5242e0cf45fdabbc76d24f05bc2d8939c17cac23 Mon Sep 17 00:00:00 2001 From: Frank Febbraro Date: Mon, 13 Nov 2017 10:44:30 -0800 Subject: [PATCH 3/3] updates changelog --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 197346e..b47d7c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 2.0.0 + +This was a big one + +- **Linux Compatibility** + - Full Linux compatibility (steps not needed on Linux are skipped) + - Linux packages (`.deb` and `.rpm`) + - Manage Linux configuration of Outrigger DNS + +- **New Features** + - Desktop Notifications + - Recursively look up through project directory structure for `outrigger.yml` + - Output `rig project run` script steps in help message + - Added `--dir` to `rig project sync:start` to be able to customize the source for unison sync volumes + - Consistent error reporting and exit codes + +- **Deprecations/Removals** + - Removed `rig watch` (deprecated as of v1.3.0) + - Removed CLI argument to name the volume for `rig project sync` + +- **Technical Plumbing** + - Migrated to using `dep` for package management + - Reorganized and linted codebase using gometalinter + - Expanded test coverage to include gometalinter and a rig build & execution + - Use GoReleaser to package and distribute new releases + + ## 1.3.2 - Added support for outrigger.yml (non-hidden)