Skip to content

Commit

Permalink
Prepare 0.4.0-alpha02
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbwong committed Oct 22, 2024
1 parent abbed28 commit c36cc65
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
14 changes: 13 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
[*.{kt,kts,gradle}]
root = true

[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

[*.{kt,kts}]
indent_size = 4
ij_kotlin_packages_to_use_import_on_demand = unset
ij_kotlin_name_count_to_use_star_import = 999
ij_kotlin_name_count_to_use_star_import_for_members = 999
ij_kotlin_allow_trailing_comma_on_call_site=true
ij_kotlin_allow_trailing_comma=true
ktlint_code_style=intellij_idea
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
androidGradle = "8.7.0"
androidx-compose-runtime = "1.7.3"
junit = "5.11.1"
kotlin = "2.0.20"
androidGradle = "8.7.1"
androidx-compose-runtime = "1.7.4"
junit = "5.11.3"
kotlin = "2.0.21"
ktlintGradle = "12.1.1"
pluginPublish = "1.3.0"
metalavaGradle = "0.3.5"
metalavaGradle = "0.4.0-alpha01"

[plugins]
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
Expand Down
7 changes: 1 addition & 6 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

group = "me.tylerbwong.gradle.metalava"
version = "0.4.0-alpha01"
version = "0.4.0-alpha02"

gradlePlugin {
website.set("https://github.com/tylerbwong/metalava-gradle")
Expand All @@ -30,13 +30,8 @@ gradlePlugin {
}
}

ktlint {
version.set("0.47.1")
}

metalava {
filename.set("api/${project.version}.txt")
sourcePaths.setFrom("src/main")
}

tasks.test {
Expand Down

0 comments on commit c36cc65

Please sign in to comment.