Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish 0.5.0 #104

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down Expand Up @@ -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")
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion dependency-guard/gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading