From 429dcdc0ca18a9eb68c581566d72419a702d8cb1 Mon Sep 17 00:00:00 2001 From: TP Honey Date: Sat, 30 Jul 2022 17:05:00 +0100 Subject: [PATCH] release prep v0.9.0 --- .vscode/launch.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- go.mod | 2 +- go.sum | 2 ++ 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8dfcc6e..7f7c5d1 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -21,7 +21,7 @@ "mode": "auto", "program": "${workspaceFolder}", "env": { - "PLUGIN_WORKING_DIRECTORY": "/home/tp/workspace/drone-plugin-index", + "PLUGIN_WORKING_DIRECTORY": "/home/tp/workspace/drone", }, }, ] diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a5329a..9a53300 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.9.0](https://github.com/tphoney/best_practice/tree/v0.9.0) (2022-07-30) + +[Full Changelog](https://github.com/tphoney/best_practice/compare/v0.8.0...v0.9.0) + +**Implemented enhancements:** + +- \(feat\) check drone build for outdated tags [\#33](https://github.com/tphoney/best_practice/pull/33) ([tphoney](https://github.com/tphoney)) + ## [v0.8.0](https://github.com/tphoney/best_practice/tree/v0.8.0) (2022-07-29) [Full Changelog](https://github.com/tphoney/best_practice/compare/v0.7.0...v0.8.0) diff --git a/README.md b/README.md index 9d8b3c6..d9c6333 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ A scanner will check a language for build, lint, testing capabilities and langua And the following output formats: - Best practice for existing Drone builds -- Drone build file creation (creates a drone file, or a .drone.yml.new file if you have an existing drone file) +- Build file creation, either Drone or CIE (*.new file if you have an existing file) - Harness product recommendations Example output: @@ -37,8 +37,8 @@ To run the best_practice tool against the current working directory. docker pull tphoney/best_practice docker run -it --rm -v $(pwd):/plugin -e PLUGIN_WORKING_DIRECTORY=/plugin tphoney/best_practice ``` -It will create a drone build file, give best practice (if a drone file exists) and harness product recommendations. +It will create a drone build file, give best practice (if a drone file exists) and harness product recommendations. To execute the newly created drone build file. diff --git a/go.mod b/go.mod index 85a2326..156e01f 100644 --- a/go.mod +++ b/go.mod @@ -10,4 +10,4 @@ require ( gopkg.in/yaml.v3 v3.0.1 ) -require golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect +require golang.org/x/sys v0.0.0-20220730100132-1609e554cd39 // indirect diff --git a/go.sum b/go.sum index 69b5ae6..4a68a02 100644 --- a/go.sum +++ b/go.sum @@ -17,6 +17,8 @@ golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2F golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220730100132-1609e554cd39 h1:aNCnH+Fiqs7ZDTFH6oEFjIfbX2HvgQXJ6uQuUbTobjk= +golang.org/x/sys v0.0.0-20220730100132-1609e554cd39/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=