Skip to content

Commit d314466

Browse files
authored
chore: Merge branch dev to main (#249)
2 parents 3896b30 + fdaf9c2 commit d314466

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [16.0.1-dev.1](https://github.com/ReVanced/revanced-patcher/compare/v16.0.0...v16.0.1-dev.1) (2023-10-05)
2+
3+
4+
### Bug Fixes
5+
6+
* Merge integrations when required ([06c2b76](https://github.com/ReVanced/revanced-patcher/commit/06c2b76f11ac1bfe43d51d54d425e7577ecefdf6))
7+
18
# [16.0.0](https://github.com/ReVanced/revanced-patcher/compare/v15.0.3...v16.0.0) (2023-10-04)
29

310

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.parallel = true
22
org.gradle.caching = true
33
kotlin.code.style = official
4-
version = 16.0.0
4+
version = 16.0.1-dev.1

revanced-patcher/src/main/kotlin/app/revanced/patcher/Patcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class Patcher(
104104

105105
// Determine, if merging integrations is required.
106106
for (patch in patches)
107-
if (!patch.anyRecursively { it.requiresIntegrations }) {
107+
if (patch.anyRecursively { it.requiresIntegrations }) {
108108
context.bytecodeContext.integrations.merge = true
109109
break
110110
}

0 commit comments

Comments
 (0)