Skip to content

Commit

Permalink
Prepare for release 1.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Jan 25, 2024
1 parent 519b433 commit e0bd6ae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

1.3.1
-----

_2024-01-25_

- Lower the lint API back to `14`, not `15`.

1.3.0
-----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package slack.lint.compose

import com.android.tools.lint.client.api.IssueRegistry
import com.android.tools.lint.client.api.Vendor
import com.android.tools.lint.detector.api.CURRENT_API
import com.android.tools.lint.detector.api.Issue
import com.google.auto.service.AutoService

Expand All @@ -17,8 +18,8 @@ class ComposeLintsIssueRegistry : IssueRegistry() {
feedbackUrl = "https://github.com/slackhq/compose-lints/issues",
)

override val api: Int = 15
override val minApi: Int = 15 // 8.2.0-alpha06
override val api: Int = CURRENT_API
override val minApi: Int = CURRENT_API

@Suppress("SpreadOperator")
override val issues: List<Issue> =
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ POM_DEVELOPER_ID=slackhq
POM_DEVELOPER_NAME=Salesforce, Inc.
POM_DEVELOPER_URL=https://github.com/slackhq
POM_INCEPTION_YEAR=2023
VERSION_NAME=1.4.0-SNAPSHOT
VERSION_NAME=1.3.1

0 comments on commit e0bd6ae

Please sign in to comment.