Skip to content

Commit

Permalink
chore(graph-support): prepare for graph-support release 0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
autonomousapps committed Dec 3, 2024
1 parent 34db3ec commit c77c27b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions graph-support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Graph-Support Changelog

# Version 0.4
* [New] `Graphs` now has `Graph<N>.roots()` and `Graph<N>.shortestPaths(source)` methods.
* [New] `ShortestPaths` now has a `distanceTo(other)` method.
* [Chore] Bump Guava to 33.3.1-jre.

# Version 0.3
* [New] Output dominator tree results in JSON format including size and total size of deps.

Expand Down
2 changes: 1 addition & 1 deletion graph-support/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Release procedure for graph-support
1. Update CHANGELOG
1. Update README if needed
1. Update the version in `build.gradle.kts`.
1. `git commit -am "Prepare for graph-support release x.y."`
1. `git commit -am "chore(graph-support): prepare for graph-support release x.y."`
1. Publish: `./gradlew :graph-support:publishToMavenCentral`
(this will automatically run the tests, and won't publish if any fail)
1. `git tag -a graph-support-x.y -m "Graph Support version x.y."`
Expand Down
2 changes: 1 addition & 1 deletion graph-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("com.autonomousapps.dependency-analysis")
}

version = "0.3"
version = "0.4"

kotlin {
explicitApi()
Expand Down

0 comments on commit c77c27b

Please sign in to comment.