From 56f924a6ef7c97ba43cef2712f30f85220de4ba4 Mon Sep 17 00:00:00 2001 From: psampaz Date: Wed, 1 May 2019 01:20:57 +0300 Subject: [PATCH 1/2] Small changes to readme --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5508e6ee..310ef482 100644 --- a/README.md +++ b/README.md @@ -74,20 +74,15 @@ If you want to see only the direct depedencies that have updates run go list -u -m -json all | go-mod-outdated -update -direct ``` -If you want to make your CI pipeline fail - -``` -go list -u -m -json all | go-mod-outdated -direct -ci -``` ### CI pipelines Using the -ci flag will the make the command exit with none zero code, breaking this way your ci pipelines. -If you want to make your CI pipeline fail if any direct or indirect dependency is outdated use the following: +If you want to make your CI pipeline fail if **any direct or indirect** dependency is outdated use the following: ``` go list -u -m -json all | go-mod-outdated -ci ``` -If you want to make your CI pipeline fail only if a direct dependency is outdated use the following: +If you want to make your CI pipeline fail **only if a direct** dependency is outdated use the following: ``` go list -u -m -json all | go-mod-outdated -direct -ci ``` From 32e3be5f2be609df5a744995a58f422de95c199a Mon Sep 17 00:00:00 2001 From: psampaz Date: Wed, 1 May 2019 01:22:25 +0300 Subject: [PATCH 2/2] Prepare changelog for 0.3.0 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 603f2db2..e7c3e275 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -## [0.3.0] unreleased +## [0.3.0] 2019-05-01 ### Added -- osx in travis - Flag '-ci' to exit with non-zero exit code when an outdated dependency is found +- osx in travis ### Removed - tip version in travis