Skip to content
Closed
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Unreleased

## v0.1.7
- Align `affected-paths-core` version with a `tooling-support` that it uses

## v0.1.6
- `tooling-support-core`: Support for Gradle 9

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public data class CoreOptions @JvmOverloads constructor(
mavenCentral()
}
dependencies {
classpath "com.squareup.affected.paths:tooling-support:0.1.4"
classpath "com.squareup.affected.paths:tooling-support:0.1.7"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
kotlin.code.style=official

GROUP=com.squareup.affected.paths
VERSION_NAME=0.1.6
VERSION_NAME=0.1.7

POM_URL=https://github.com/squareup/affected-paths
POM_SCM_URL=https://github.com/squareup/affected-paths
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public fun Dependency.extractSquareDependency(project: Project): SquareDependenc
// Meant to de-duplicate project name from target string.
private fun Dependency.keyRelativeTo(relative: String = ""): String {
if (this is ProjectDependency) {
return path.replace(':', '/')
return path.replace(":", "/")
}
val s = group?.split(".", ":", "/") ?: emptyList()
val result = when (s.firstOrNull()) {
Expand Down
Loading