diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6c443079..e916974a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Change log for refreshVersions
+## Version 0.60.4 (2024-01-31)
+
+### Potentially breaking change
+
+We now support only Gradle 8+. Use Gradle 8+ or stick to version 0.60.3 if you can't yet.
+
+### Bug fix
+
+Update the priority of artifact version key rules so that the longest match takes precedence, rather than the final key length.
+That should fix the keys of `androidx.wear.compose` libraries.
+
+
## Version 0.60.3 (2023-09-27)
### Bug fix
diff --git a/README.md b/README.md
index 183d697f..5cce25d1 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@
// settings.gradle(.kts)
plugins {
// See https://splitties.github.io/refreshVersions
- id("de.fayard.refreshVersions") version "0.60.3"
+ id("de.fayard.refreshVersions") version "0.60.4"
}
refreshVersions { // Optional: configure the plugin
diff --git a/docs/dependency-notations.md b/docs/dependency-notations.md
index 8474b55e..c5c7ce43 100644
--- a/docs/dependency-notations.md
+++ b/docs/dependency-notations.md
@@ -2401,31 +2401,31 @@ Hover 🐁 on a dependency notation to see its `Triple(KotlinName, MavenCoordina
AndroidX.wear.compose |
foundation
-
material3
-
material
-
navigation
-
uiTooling
diff --git a/mkdocs.yml b/mkdocs.yml
index bd124527..702c8870 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -20,13 +20,13 @@ extra:
gradlePluginPortal: https://plugins.gradle.org/plugin/de.fayard.refreshVersions
slack: https://app.slack.com/client/T09229ZC6/CP5659EL9
version:
- gradle: 8.4
- refreshVersions: '0.60.3'
- snapshot: '0.60.4-SNAPSHOT'
+ gradle: 8.5
+ refreshVersions: '0.60.4'
+ snapshot: '0.60.5-SNAPSHOT'
keyboard_shortcuts:
find_actions: ctrl/cmd + shift + A
-copyright: 'Copyright © 2020-2023 jmfayard - Louis CAD'
+copyright: 'Copyright © 2020-2024 jmfayard - Louis CAD'
theme:
name: 'material'
diff --git a/plugins/dependencies/src/main/resources/version-to-removals-revision-mapping.txt b/plugins/dependencies/src/main/resources/version-to-removals-revision-mapping.txt
index a9691f06..f9d30635 100644
--- a/plugins/dependencies/src/main/resources/version-to-removals-revision-mapping.txt
+++ b/plugins/dependencies/src/main/resources/version-to-removals-revision-mapping.txt
@@ -13,3 +13,4 @@
0.60.1->17
0.60.2->19
0.60.3->19
+0.60.4->19
diff --git a/plugins/version.txt b/plugins/version.txt
index 9cd40d30..3cc75305 100644
--- a/plugins/version.txt
+++ b/plugins/version.txt
@@ -1 +1 @@
-0.60.4-SNAPSHOT
\ No newline at end of file
+0.60.4
|