Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
handstandsam committed May 26, 2022
1 parent aeec72c commit 0b65d53
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# Change Log

## Version 0.3.0

_2022-05-26_

See: [0.3.0 Milestone](https://github.com/dropbox/dependency-guard/milestone/2?closed=1)

* Hook `dependencyGuard` task automatically into `check` task. by [@handstandsam](https://github.com/handstandsam) in [#30](https://github.com/dropbox/dependency-guard/issues/30)
* Removed implementation dependencies of dependency-guard that aren't needed. [@handstandsam](https://github.com/handstandsam) in [#32](https://github.com/dropbox/dependency-guard/issues/32)

## Version 0.2.0

_2022-05-12_

See: https://github.com/dropbox/dependency-guard/milestone/1?closed=1
See: [0.2.0 Milestone](https://github.com/dropbox/dependency-guard/milestone/1?closed=1)

* **BREAKING CHANGE**: Renamed `allowRule` -> `allowedFilter` by [@handstandsam](https://github.com/handstandsam) in [#21](https://github.com/dropbox/dependency-guard/pull/21)
* **BEHAVIOR CHANGE**: Set `artifacts=true` and `modules=false` as the default config. by [@handstandsam](https://github.com/handstandsam) in [#17](https://github.com/dropbox/dependency-guard/pull/17)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,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")
id("com.dropbox.dependency-guard") version "0.3.0"
}
```

Expand Down Expand Up @@ -250,7 +250,7 @@ buildscript {
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
classpath("com.dropbox.dependency-guard:dependency-guard:0.1.0")
classpath("com.dropbox.dependency-guard:dependency-guard:0.3.0")
}
}
```
Expand Down
9 changes: 5 additions & 4 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ Releasing
=========

1. Change the version in `dependency-guard/gradle.properties` to a non-SNAPSHOT version.
2. Update the `CHANGELOG.md` for the impending release.
3. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version)
4. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
5. `git push && git push --tags` to trigger CI to deploy the release.
2. Update the `README.md` to reflect the new version number.
3. Update the `CHANGELOG.md` for the impending release.
4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version)
5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
6. `git push && git push --tags` to trigger CI to deploy the release.
7. Update the `gradle.properties` to the next SNAPSHOT version.
8. `git commit -am "Prepare next development version."`
9. `git push`
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.2.1-SNAPSHOT
VERSION_NAME=0.3.0

POM_ARTIFACT_ID=dependency-guard
POM_NAME=Dependency Guard
Expand Down

0 comments on commit 0b65d53

Please sign in to comment.