File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
main/kotlin/org/jlleitschuh/gradle/ktlint/tasks
test/kotlin/org/jlleitschuh/gradle/ktlint Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
11
11
with any os [ #738 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/738 )
12
12
- fix [ #750 ] ( https://github.com/JLLeitschuh/ktlint-gradle/issues/750 ) : additionalEditorconfig property not being
13
13
accounted for up-to-date checks and caching [ #758 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/758 )
14
+ - Update versions used for testing [ #763 ] ( https://github.com/JLLeitschuh/ktlint-gradle/pull/763 )
14
15
15
16
## [ 12.1.0] - 2024-01-09
16
17
Original file line number Diff line number Diff line change 1
- 12.0.3
1
+ 12.1.0
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ abstract class BaseKtLintCheckTask @Inject constructor(
53
53
internal abstract val ktLintClasspath: ConfigurableFileCollection
54
54
55
55
@get:Internal
56
+ @get:Deprecated(" ktlint no longer supports this parameter" )
56
57
internal abstract val additionalEditorconfigFile: RegularFileProperty
57
58
58
59
@get:Input
Original file line number Diff line number Diff line change @@ -174,15 +174,13 @@ class KtLintSupportedVersionsTest : AbstractPluginTest() {
174
174
class SupportedKtlintVersionsProvider : GradleArgumentsProvider () {
175
175
private val supportedKtlintVersions = mutableListOf (
176
176
" 0.47.1" ,
177
- " 0.48.0" ,
178
- " 0.48.1" ,
179
177
" 0.48.2" ,
180
178
// "0.49.0" did not expose needed baseline classes
181
179
" 0.49.1" ,
182
180
" 0.50.0" ,
183
- " 1.0.0" ,
184
181
" 1.0.1" ,
185
- " 1.1.0"
182
+ " 1.1.1" ,
183
+ " 1.2.1"
186
184
)
187
185
188
186
override fun provideArguments (
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ import kotlin.streams.asStream
12
12
@Suppress(" ConstPropertyName" )
13
13
object TestVersions {
14
14
const val minSupportedGradleVersion = KtlintBasePlugin .LOWEST_SUPPORTED_GRADLE_VERSION
15
- const val maxSupportedGradleVersion = " 8.5 "
15
+ const val maxSupportedGradleVersion = " 8.6 "
16
16
val pluginVersion = File (" VERSION_CURRENT.txt" ).readText().trim()
17
17
const val minSupportedKotlinPluginVersion = " 1.4.32"
18
- const val maxSupportedKotlinPluginVersion = " 1.9.21 "
18
+ const val maxSupportedKotlinPluginVersion = " 1.9.23 "
19
19
const val minAgpVersion = " 4.1.0"
20
- const val maxAgpVersion = " 8.2 .0"
20
+ const val maxAgpVersion = " 8.4 .0"
21
21
}
22
22
23
23
@Target(AnnotationTarget .FUNCTION , AnnotationTarget .CLASS )
You can’t perform that action at this time.
0 commit comments