From ea8a3ff0d19d722c1ed06c7572a0f082e299d36c Mon Sep 17 00:00:00 2001 From: Josh Feinberg <15068619+joshafeinberg@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:34:14 -0600 Subject: [PATCH] Publish 0.5.0 --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- dependency-guard/gradle.properties | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3277ae5..f25c079 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## Version 0.5.0 ([All Changes](https://github.com/dropbox/dependency-guard/compare/0.4.3...0.4.4)) + +_2024-02-05_ + +* Fixes [#82](https://github.com/dropbox/dependency-guard/issues/82): Feature request: suppressible logging output + ## Version 0.4.3 ([All Changes](https://github.com/dropbox/dependency-guard/compare/0.4.2...0.4.3)) _2023-03-14_ diff --git a/README.md b/README.md index 9d7cfc2..75c6ec7 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ As platform engineers, we do a lot of library upgrades, and needed insight into ```kotlin // sample/app/build.gradle.kts plugins { - id("com.dropbox.dependency-guard") version "0.4.3" + id("com.dropbox.dependency-guard") version "0.5.0" } ``` @@ -254,7 +254,7 @@ buildscript { maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots" } } dependencies { - classpath("com.dropbox.dependency-guard:dependency-guard:0.4.3") + classpath("com.dropbox.dependency-guard:dependency-guard:0.5.0") } } ``` diff --git a/dependency-guard/gradle.properties b/dependency-guard/gradle.properties index 055b7b0..1d48604 100644 --- a/dependency-guard/gradle.properties +++ b/dependency-guard/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.dropbox.dependency-guard -VERSION_NAME=0.5.0-SNAPSHOT +VERSION_NAME=0.5.0 POM_ARTIFACT_ID=dependency-guard POM_NAME=Dependency Guard