diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f138e3..9111587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## [1.1.5-dev.1](https://github.com/ReVanced/revanced-library/compare/v1.1.4...v1.1.5-dev.1) (2023-10-23) + ## [1.1.4](https://github.com/ReVanced/revanced-library/compare/v1.1.3...v1.1.4) (2023-10-12) diff --git a/build.gradle.kts b/build.gradle.kts index 08fdcc9..b9537d6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,11 +1,18 @@ plugins { - kotlin("jvm") version "1.9.0" + kotlin("jvm") version "1.9.10" alias(libs.plugins.binary.compatibility.validator) `maven-publish` } group = "app.revanced" +repositories { + mavenCentral() + mavenLocal() + maven { url = uri("https://jitpack.io") } + google() +} + dependencies { implementation(libs.revanced.patcher) implementation(libs.kotlin.reflect) diff --git a/gradle.properties b/gradle.properties index 0966a91..4570c00 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel = true org.gradle.caching = true kotlin.code.style = official -version = 1.1.4 +version = 1.1.5-dev.1 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index c15bcbe..e201af8 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,7 @@ jackson-module-kotlin = "2.14.3" jadb = "1.2.1" kotlin-reflect = "1.9.0" kotlin-test = "1.8.20-RC" -revanced-patcher = "17.0.0" +revanced-patcher = "18.0.0" binary-compatibility-validator = "0.13.2" [libraries] @@ -15,7 +15,7 @@ jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module- jadb = { module = "app.revanced:jadb", version.ref = "jadb" } kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin-reflect" } kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin-test" } -revanced-patcher = { module = "app.revanced.revanced-patcher:revanced-patcher", version.ref = "revanced-patcher" } +revanced-patcher = { module = "app.revanced:revanced-patcher", version.ref = "revanced-patcher" } [plugins] binary-compatibility-validator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "binary-compatibility-validator" } diff --git a/settings.gradle.kts b/settings.gradle.kts index 0a621b2..10b30c4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,10 +1 @@ -dependencyResolutionManagement { - repositories { - mavenCentral() - mavenLocal() - maven { url = uri("https://jitpack.io") } - google() - } -} - rootProject.name = "revanced-library" \ No newline at end of file