Skip to content

Commit

Permalink
fix: exclude hotfix versions (#4)
Browse files Browse the repository at this point in the history
* exclude 1.20.5

* 1.02.1 and comment

* Update build.gradle.kts

---------

Co-authored-by: Matouš Kučera <[email protected]>
  • Loading branch information
powercasgamer and zlataovce authored Apr 30, 2024
1 parent de4a45f commit 108ba19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,11 @@ val mappingConfig = buildMappingConfig {
version(
manifest
.range("1.8.8", "1.20.6") { // change me
// exclude 1.20.1 and 1.20.5 - hotfix versions
// exclude 1.16 and 1.10.1, they don't have most mappings and are basically not used at all
// exclude 1.8.9, client-only update - no Spigot mappings, no thank you
// exclude 1.9.1 and 1.9.3 - no mappings at all
exclude("1.16", "1.10.1", "1.8.9", "1.9.1", "1.9.3")
exclude("1.16", "1.10.1", "1.8.9", "1.9.1", "1.9.3", "1.20.1", "1.20.5")

// include only releases, no snapshots
includeTypes(Version.Type.RELEASE)
Expand Down

0 comments on commit 108ba19

Please sign in to comment.