diff --git a/.releaserc b/.releaserc index 35cc324..5c96e77 100644 --- a/.releaserc +++ b/.releaserc @@ -7,11 +7,7 @@ } ], "plugins": [ - ["@semantic-release/commit-analyzer", { - "releaseRules": [ - {"type": "build", "release": "patch"} - ] - }], + "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "gradle-semantic-release-plugin", @@ -31,7 +27,8 @@ { "path": "build/libs/*all.jar" } - ] + ], + successComment: false } ], [ diff --git a/CHANGELOG.md b/CHANGELOG.md index 9504520..1031aaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2.17.1-dev.2](https://github.com/revanced/revanced-cli/compare/v2.17.1-dev.1...v2.17.1-dev.2) (2022-12-15) + +## [2.17.1-dev.1](https://github.com/revanced/revanced-cli/compare/v2.17.0...v2.17.1-dev.1) (2022-12-15) + # [2.17.0](https://github.com/revanced/revanced-cli/compare/v2.16.1...v2.17.0) (2022-12-14) diff --git a/build.gradle.kts b/build.gradle.kts index 643c985..165f6c6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,7 +41,9 @@ tasks { manifest { attributes("Main-Class" to "app.revanced.cli.main.MainKt") } - minimize() + minimize { + exclude(dependency("org.jetbrains.kotlin:.*")) + } } // Dummy task to fix the Gradle semantic-release plugin. // Remove this if you forked it to support building only. diff --git a/gradle.properties b/gradle.properties index 84b95ff..f551d48 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ kotlin.code.style = official -version = 2.17.0 +version = 2.17.1-dev.2