From 51402ab8a788f9c0bffe88ba25f69e08b5a18284 Mon Sep 17 00:00:00 2001
From: Palm
Date: Fri, 13 Oct 2023 02:57:50 +0700
Subject: [PATCH 01/14] build: Bump dependencies
---
gradle/libs.versions.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 213e17a..f34e81d 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -4,7 +4,7 @@ kotlin-test = "1.8.20-RC"
kotlinx-coroutines-core = "1.7.3"
picocli = "4.7.3"
revanced-patcher = "17.0.0"
-revanced-library = "1.1.3"
+revanced-library = "1.1.4"
[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin-test" }
From 362e6f590442c57ad436cfffb64ac5fa962e5f10 Mon Sep 17 00:00:00 2001
From: oSumAtrIX
Date: Sat, 21 Oct 2023 12:07:40 +0200
Subject: [PATCH 02/14] docs: Use shorter heading
---
CONTRIBUTING.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 8eeb27a..e3d551b 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -39,7 +39,7 @@
Continuing the legacy of Vanced
-# 📙 ReVanced CLI contribution guidelines
+# 👋 Contribution guidelines
This document describes how to contribute to ReVanced CLI.
@@ -76,4 +76,4 @@ If you encounter a bug while using ReVanced CLI, open an issue using the
it will be merged into the `dev` branch and will be included in the next release of ReVanced CLI
❤️ Thank you for considering contributing to ReVanced CLI,
-ReVanced
\ No newline at end of file
+ReVanced
From a60d07fc5dc94448f8b960819aa596c24b09ef46 Mon Sep 17 00:00:00 2001
From: oSumAtrIX
Date: Sun, 22 Oct 2023 16:14:47 +0200
Subject: [PATCH 03/14] build: Bump Kotlin Gradle plugin version
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 536d172..fc12ab7 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,5 +1,5 @@
plugins {
- kotlin("jvm") version "1.9.0"
+ kotlin("jvm") version "1.9.10"
alias(libs.plugins.shadow)
}
From 6670d89c74d3690e938a827e447cceace210730b Mon Sep 17 00:00:00 2001
From: oSumAtrIX
Date: Sun, 22 Oct 2023 23:38:34 +0200
Subject: [PATCH 04/14] build(Needs bump): Bump dependencies to support new
patch options fields
---
gradle/libs.versions.toml | 6 +++---
.../app/revanced/cli/command/ListPatchesCommand.kt | 12 ++++++++----
2 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index f34e81d..0e5ee07 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -3,14 +3,14 @@ shadow = "8.1.1"
kotlin-test = "1.8.20-RC"
kotlinx-coroutines-core = "1.7.3"
picocli = "4.7.3"
-revanced-patcher = "17.0.0"
-revanced-library = "1.1.4"
+revanced-patcher = "18.0.0"
+revanced-library = "1.1.5"
[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin-test" }
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines-core" }
picocli = { module = "info.picocli:picocli", version.ref = "picocli" }
-revanced-patcher = { module = "app.revanced.revanced-patcher:revanced-patcher", version.ref = "revanced-patcher" }
+revanced-patcher = { module = "app.revanced:revanced-patcher", version.ref = "revanced-patcher" }
revanced-library = { module = "app.revanced:revanced-library", version.ref = "revanced-library" }
[plugins]
diff --git a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
index 3c3aac2..67e92c1 100644
--- a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
+++ b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
@@ -58,12 +58,16 @@ internal object ListPatchesCommand : Runnable {
fun PatchOption<*>.buildString() = buildString {
appendLine("Title: $title")
- appendLine("Description: $description")
-
- value?.let {
+ description?.let { appendLine("Description: $it") }
+ default?.let {
appendLine("Key: $key")
- append("Value: $it")
+ append("Default: $it")
} ?: append("Key: $key")
+
+ values?.let { values ->
+ appendLine("\nValid values:")
+ append(values.map { "${it.value} (${it.key})" }.joinToString("\n").prependIndent("\t"))
+ }
}
fun Patch<*>.buildString() = buildString {
From 9f15ac6ec59658238a13939ebc5a41e653dc6153 Mon Sep 17 00:00:00 2001
From: semantic-release-bot
Date: Mon, 23 Oct 2023 00:15:36 +0000
Subject: [PATCH 05/14] chore(release): 4.0.3-dev.1 [skip ci]
## [4.0.3-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.2...v4.0.3-dev.1) (2023-10-23)
---
CHANGELOG.md | 2 ++
gradle.properties | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cb23fd3..5ff8145 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+## [4.0.3-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.2...v4.0.3-dev.1) (2023-10-23)
+
## [4.0.2](https://github.com/ReVanced/revanced-cli/compare/v4.0.1...v4.0.2) (2023-10-12)
diff --git a/gradle.properties b/gradle.properties
index dc74906..6739a5f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.0.2
+version = 4.0.3-dev.1
From 6cc69604930b536f027d07f6f660e22545dbe5e8 Mon Sep 17 00:00:00 2001
From: taku
Date: Mon, 30 Oct 2023 22:22:50 +0100
Subject: [PATCH 06/14] build(Needs bump): Bump dependencies to support
`PatchOption#valueType` (#296)
---
gradle/libs.versions.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 0e5ee07..8135208 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -3,7 +3,7 @@ shadow = "8.1.1"
kotlin-test = "1.8.20-RC"
kotlinx-coroutines-core = "1.7.3"
picocli = "4.7.3"
-revanced-patcher = "18.0.0"
+revanced-patcher = "19.0.0"
revanced-library = "1.1.5"
[libraries]
From 7d1c0e663f26a51117b2788dd11a369c0afd11a7 Mon Sep 17 00:00:00 2001
From: semantic-release-bot
Date: Mon, 30 Oct 2023 21:24:43 +0000
Subject: [PATCH 07/14] chore(release): 4.0.3-dev.2 [skip ci]
## [4.0.3-dev.2](https://github.com/ReVanced/revanced-cli/compare/v4.0.3-dev.1...v4.0.3-dev.2) (2023-10-30)
---
CHANGELOG.md | 2 ++
gradle.properties | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5ff8145..a70d1b0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+## [4.0.3-dev.2](https://github.com/ReVanced/revanced-cli/compare/v4.0.3-dev.1...v4.0.3-dev.2) (2023-10-30)
+
## [4.0.3-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.2...v4.0.3-dev.1) (2023-10-23)
## [4.0.2](https://github.com/ReVanced/revanced-cli/compare/v4.0.1...v4.0.2) (2023-10-12)
diff --git a/gradle.properties b/gradle.properties
index 6739a5f..81f58a5 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.0.3-dev.1
+version = 4.0.3-dev.2
From 0139dfe0bfa06a13f56dc03e7718aaf644029614 Mon Sep 17 00:00:00 2001
From: SandaruKasa
Date: Fri, 3 Nov 2023 03:31:45 +0300
Subject: [PATCH 08/14] feat: List patches which are compatible with any app
(#297)
Co-authored-by: oSumAtrIX
---
.../app/revanced/cli/command/ListPatchesCommand.kt | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
index 67e92c1..52b0e8c 100644
--- a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
+++ b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
@@ -42,6 +42,13 @@ internal object ListPatchesCommand : Runnable {
)
private var withOptions: Boolean = false
+ @Option(
+ names = ["-u", "--with-universal-patches"],
+ description = ["List patches which are compatible with any app."],
+ showDefaultValue = ALWAYS
+ )
+ private var withUniversalPatches: Boolean = true
+
@Option(
names = ["-f", "--filter-package-name"], description = ["Filter patches by package name."]
)
@@ -92,11 +99,12 @@ internal object ListPatchesCommand : Runnable {
}
}
- fun Patch<*>.anyPackageName(name: String) = compatiblePackages?.any { it.name == name } == true
+ fun Patch<*>.filterCompatiblePackages(name: String) = compatiblePackages?.any { it.name == name }
+ ?: withUniversalPatches
val patches = PatchBundleLoader.Jar(*patchBundles)
- val filtered = packageName?.let { patches.filter { patch -> patch.anyPackageName(it) } } ?: patches
+ val filtered = packageName?.let { patches.filter { patch -> patch.filterCompatiblePackages(it) } } ?: patches
if (filtered.isNotEmpty()) logger.info(filtered.joinToString("\n\n") { it.buildString() })
}
From 4fc42089a500ab8fc041df4ecd7a4cf958afac5b Mon Sep 17 00:00:00 2001
From: semantic-release-bot
Date: Fri, 3 Nov 2023 00:33:10 +0000
Subject: [PATCH 09/14] chore(release): 4.1.0-dev.1 [skip ci]
# [4.1.0-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.3-dev.2...v4.1.0-dev.1) (2023-11-03)
### Features
* List patches which are compatible with any app ([#297](https://github.com/ReVanced/revanced-cli/issues/297)) ([0139dfe](https://github.com/ReVanced/revanced-cli/commit/0139dfe0bfa06a13f56dc03e7718aaf644029614))
---
CHANGELOG.md | 7 +++++++
gradle.properties | 2 +-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a70d1b0..9aa2c86 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [4.1.0-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.3-dev.2...v4.1.0-dev.1) (2023-11-03)
+
+
+### Features
+
+* List patches which are compatible with any app ([#297](https://github.com/ReVanced/revanced-cli/issues/297)) ([0139dfe](https://github.com/ReVanced/revanced-cli/commit/0139dfe0bfa06a13f56dc03e7718aaf644029614))
+
## [4.0.3-dev.2](https://github.com/ReVanced/revanced-cli/compare/v4.0.3-dev.1...v4.0.3-dev.2) (2023-10-30)
## [4.0.3-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.2...v4.0.3-dev.1) (2023-10-23)
diff --git a/gradle.properties b/gradle.properties
index 81f58a5..6034beb 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.0.3-dev.2
+version = 4.1.0-dev.1
From b2055ce07df3ab9a9f3f73ab17d8c2cf02f2ae62 Mon Sep 17 00:00:00 2001
From: oSumAtrIX
Date: Fri, 3 Nov 2023 02:00:00 +0100
Subject: [PATCH 10/14] feat: Include or exclude patches by their index in
relation to supplied patch bundles
---
docs/1_usage.md | 15 ++++++
.../cli/command/ListPatchesCommand.kt | 48 ++++++++++++-------
.../app/revanced/cli/command/PatchCommand.kt | 18 +++++--
3 files changed, 60 insertions(+), 21 deletions(-)
diff --git a/docs/1_usage.md b/docs/1_usage.md
index e9fb42b..1a885b4 100644
--- a/docs/1_usage.md
+++ b/docs/1_usage.md
@@ -87,10 +87,25 @@ ReVanced CLI is divided into the following fundamental commands:
> adb install app.apk
> ```
+ > [!NOTE]
+ > You can use the option `--ii` to include or `--ie` to exclude
+ > patches by their index in relation to supplied patch bundles,
+ > similarly to the option `--include` and `--exclude`.
+ >
+ > This is useful in case two patches have the same name, and you need to include or exclude one of them.
+ > The index of a patch is calculated by the position of the patch in the list of patches
+ > from patch bundles supplied using the option `--patch-bundle`.
+ >
+ > You can list all patches with their indices using the command `list-patches`.
+ >
+ > Keep in mind, that the indices can change based on the order of the patch bundles supplied,
+ > as well if the patch bundles are updated, because patches can be added or removed.
+
```bash
java -jar revanced-cli.jar patch \
--patch-bundle revanced-patches.jar \
--include "Some patch" \
+ --ii 123 \
--exclude "Some other patch" \
--out patched-app.apk \
--device-serial \
diff --git a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
index 52b0e8c..b9e11b0 100644
--- a/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
+++ b/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt
@@ -49,6 +49,13 @@ internal object ListPatchesCommand : Runnable {
)
private var withUniversalPatches: Boolean = true
+ @Option(
+ names = ["-i", "--index"],
+ description = ["List the index of of each patch in relation to the supplied patch bundles."],
+ showDefaultValue = ALWAYS
+ )
+ private var withIndex: Boolean = true
+
@Option(
names = ["-f", "--filter-package-name"], description = ["Filter patches by package name."]
)
@@ -77,34 +84,39 @@ internal object ListPatchesCommand : Runnable {
}
}
- fun Patch<*>.buildString() = buildString {
- append("Name: $name")
+ fun IndexedValue>.buildString() = let { (index, patch) ->
+ buildString {
+ if (withIndex) appendLine("Index: $index")
- if (withDescriptions) append("\nDescription: $description")
+ append("Name: ${patch.name}")
- if (withOptions && options.isNotEmpty()) {
- appendLine("\nOptions:")
- append(
- options.values.joinToString("\n\n") { option ->
- option.buildString()
- }.prependIndent("\t")
- )
- }
+ if (withDescriptions) append("\nDescription: ${patch.description}")
- if (withPackages && compatiblePackages != null) {
- appendLine("\nCompatible packages:")
- append(
- compatiblePackages!!.joinToString("\n") { it.buildString() }.prependIndent("\t")
- )
+ if (withOptions && patch.options.isNotEmpty()) {
+ appendLine("\nOptions:")
+ append(
+ patch.options.values.joinToString("\n\n") { option ->
+ option.buildString()
+ }.prependIndent("\t")
+ )
+ }
+
+ if (withPackages && patch.compatiblePackages != null) {
+ appendLine("\nCompatible packages:")
+ append(patch.compatiblePackages!!.joinToString("\n") {
+ it.buildString()
+ }.prependIndent("\t"))
+ }
}
}
fun Patch<*>.filterCompatiblePackages(name: String) = compatiblePackages?.any { it.name == name }
?: withUniversalPatches
- val patches = PatchBundleLoader.Jar(*patchBundles)
+ val patches = PatchBundleLoader.Jar(*patchBundles).withIndex().toList()
- val filtered = packageName?.let { patches.filter { patch -> patch.filterCompatiblePackages(it) } } ?: patches
+ val filtered =
+ packageName?.let { patches.filter { (_, patch) -> patch.filterCompatiblePackages(it) } } ?: patches
if (filtered.isNotEmpty()) logger.info(filtered.joinToString("\n\n") { it.buildString() })
}
diff --git a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
index 8781136..34ba6eb 100644
--- a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
+++ b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
@@ -39,11 +39,23 @@ internal object PatchCommand : Runnable {
)
private var includedPatches = arrayOf()
+ @CommandLine.Option(
+ names = ["--ii"],
+ description = ["List of patches to include by their index in relation to the supplied patch bundles."]
+ )
+ private var includedPatchesByIndex = arrayOf()
+
@CommandLine.Option(
names = ["-e", "--exclude"], description = ["List of patches to exclude."]
)
private var excludedPatches = arrayOf()
+ @CommandLine.Option(
+ names = ["--ei"],
+ description = ["List of patches to exclude by their index in relation to the supplied patch bundles."]
+ )
+ private var excludedPatchesByIndex = arrayOf()
+
@CommandLine.Option(
names = ["--options"], description = ["Path to patch options JSON file."], showDefaultValue = ALWAYS
)
@@ -283,10 +295,10 @@ internal object PatchCommand : Runnable {
val packageName = context.packageMetadata.packageName
val packageVersion = context.packageMetadata.packageVersion
- patches.forEach patch@{ patch ->
+ patches.withIndex().forEach patch@{ (i, patch) ->
val patchName = patch.name!!
- val explicitlyExcluded = excludedPatches.contains(patchName)
+ val explicitlyExcluded = excludedPatches.contains(patchName) || excludedPatchesByIndex.contains(i)
if (explicitlyExcluded) return@patch logger.info("Excluding $patchName")
// Make sure the patch is compatible with the supplied APK files package name and version.
@@ -314,7 +326,7 @@ internal object PatchCommand : Runnable {
// If the patch is implicitly used, it will be only included if [exclusive] is false.
val implicitlyIncluded = !exclusive && patch.use
// If the patch is explicitly used, it will be included even if [exclusive] is false.
- val explicitlyIncluded = includedPatches.contains(patchName)
+ val explicitlyIncluded = includedPatches.contains(patchName) || includedPatchesByIndex.contains(i)
val included = implicitlyIncluded || explicitlyIncluded
if (!included) return@patch logger.info("$patchName excluded") // Case 1.
From 616d14f0097c1ee7ba6dc07be417590f6418e8e5 Mon Sep 17 00:00:00 2001
From: oSumAtrIX
Date: Fri, 3 Nov 2023 02:02:28 +0100
Subject: [PATCH 11/14] perf: Use a `HashSet` to check for included and
excluded patches
---
src/main/kotlin/app/revanced/cli/command/PatchCommand.kt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
index 34ba6eb..0603783 100644
--- a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
+++ b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
@@ -37,7 +37,7 @@ internal object PatchCommand : Runnable {
@CommandLine.Option(
names = ["-i", "--include"], description = ["List of patches to include."]
)
- private var includedPatches = arrayOf()
+ private var includedPatches = hashSetOf()
@CommandLine.Option(
names = ["--ii"],
@@ -48,7 +48,7 @@ internal object PatchCommand : Runnable {
@CommandLine.Option(
names = ["-e", "--exclude"], description = ["List of patches to exclude."]
)
- private var excludedPatches = arrayOf()
+ private var excludedPatches = hashSetOf()
@CommandLine.Option(
names = ["--ei"],
@@ -200,7 +200,7 @@ internal object PatchCommand : Runnable {
// Warn if a patch can not be found in the supplied patch bundles.
if (warn) patches.map { it.name }.toHashSet().let { availableNames ->
- arrayOf(*includedPatches, *excludedPatches).filter { name ->
+ (includedPatches + excludedPatches).filter { name ->
!availableNames.contains(name)
}
}.let { unknownPatches ->
From 799882e6a6049f1712612b3a8fc8a84d17b3b272 Mon Sep 17 00:00:00 2001
From: semantic-release-bot
Date: Fri, 3 Nov 2023 01:04:32 +0000
Subject: [PATCH 12/14] chore(release): 4.1.0-dev.2 [skip ci]
# [4.1.0-dev.2](https://github.com/ReVanced/revanced-cli/compare/v4.1.0-dev.1...v4.1.0-dev.2) (2023-11-03)
### Features
* Include or exclude patches by their index in relation to supplied patch bundles ([b2055ce](https://github.com/ReVanced/revanced-cli/commit/b2055ce07df3ab9a9f3f73ab17d8c2cf02f2ae62))
### Performance Improvements
* Use a `HashSet` to check for included and excluded patches ([616d14f](https://github.com/ReVanced/revanced-cli/commit/616d14f0097c1ee7ba6dc07be417590f6418e8e5))
---
CHANGELOG.md | 12 ++++++++++++
gradle.properties | 2 +-
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9aa2c86..9a80d34 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# [4.1.0-dev.2](https://github.com/ReVanced/revanced-cli/compare/v4.1.0-dev.1...v4.1.0-dev.2) (2023-11-03)
+
+
+### Features
+
+* Include or exclude patches by their index in relation to supplied patch bundles ([b2055ce](https://github.com/ReVanced/revanced-cli/commit/b2055ce07df3ab9a9f3f73ab17d8c2cf02f2ae62))
+
+
+### Performance Improvements
+
+* Use a `HashSet` to check for included and excluded patches ([616d14f](https://github.com/ReVanced/revanced-cli/commit/616d14f0097c1ee7ba6dc07be417590f6418e8e5))
+
# [4.1.0-dev.1](https://github.com/ReVanced/revanced-cli/compare/v4.0.3-dev.2...v4.1.0-dev.1) (2023-11-03)
diff --git a/gradle.properties b/gradle.properties
index 6034beb..928bad4 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.1.0-dev.1
+version = 4.1.0-dev.2
From 6481ba68db1d0bdf2bb69962298893906988d79b Mon Sep 17 00:00:00 2001
From: oSumAtrIX
Date: Fri, 3 Nov 2023 18:24:27 +0100
Subject: [PATCH 13/14] build(Needs bump): Bump dependencies
---
gradle/libs.versions.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 8135208..b6a699c 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -4,7 +4,7 @@ kotlin-test = "1.8.20-RC"
kotlinx-coroutines-core = "1.7.3"
picocli = "4.7.3"
revanced-patcher = "19.0.0"
-revanced-library = "1.1.5"
+revanced-library = "1.2.0"
[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin-test" }
From bd3171c7c51b25baee8dffa7936de95f12537e84 Mon Sep 17 00:00:00 2001
From: semantic-release-bot
Date: Fri, 3 Nov 2023 17:27:32 +0000
Subject: [PATCH 14/14] chore(release): 4.1.0-dev.3 [skip ci]
# [4.1.0-dev.3](https://github.com/ReVanced/revanced-cli/compare/v4.1.0-dev.2...v4.1.0-dev.3) (2023-11-03)
---
CHANGELOG.md | 2 ++
gradle.properties | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9a80d34..92b969b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+# [4.1.0-dev.3](https://github.com/ReVanced/revanced-cli/compare/v4.1.0-dev.2...v4.1.0-dev.3) (2023-11-03)
+
# [4.1.0-dev.2](https://github.com/ReVanced/revanced-cli/compare/v4.1.0-dev.1...v4.1.0-dev.2) (2023-11-03)
diff --git a/gradle.properties b/gradle.properties
index 928bad4..18b12a1 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
org.gradle.parallel = true
org.gradle.caching = true
kotlin.code.style = official
-version = 4.1.0-dev.2
+version = 4.1.0-dev.3