diff --git a/.releaserc b/.releaserc index 0eae20c..8c4d33c 100644 --- a/.releaserc +++ b/.releaserc @@ -7,7 +7,13 @@ } ], "plugins": [ - "@semantic-release/commit-analyzer", + [ + "@semantic-release/commit-analyzer", { + "releaseRules": [ + { "type": "build", "scope": "revanced-patcher", "release": "patch" } + ] + } + ], "@semantic-release/release-notes-generator", "@semantic-release/changelog", "gradle-semantic-release-plugin", diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fb0c7f..7297bd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [2.21.1-dev.1](https://github.com/revanced/revanced-cli/compare/v2.21.0...v2.21.1-dev.1) (2023-05-06) + # [2.21.0](https://github.com/revanced/revanced-cli/compare/v2.20.2...v2.21.0) (2023-05-04) diff --git a/build.gradle.kts b/build.gradle.kts index e0430be..f04b6c5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ repositories { dependencies { implementation("org.jetbrains.kotlin:kotlin-reflect:1.8.20-RC") - implementation("app.revanced:revanced-patcher:7.0.0") + implementation("app.revanced:revanced-patcher:7.1.0") implementation("info.picocli:picocli:4.7.1") implementation("com.github.revanced:jadb:2531a28109") // updated fork implementation("com.android.tools.build:apksig:8.1.0-alpha09") diff --git a/gradle.properties b/gradle.properties index 9f7f441..501b3fa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ kotlin.code.style = official -version = 2.21.0 +version = 2.21.1-dev.1