Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +0,0 @@
# 1.0.0 (2025-11-30)


### Bug Fixes

* Migrate to new package, use maven patcher dependency ([e99008e](https://github.com/MorpheApp/morphe-cli/commit/e99008e28c51e17a24a14454d06e0129261ff74c))
* Migrate to new package, use maven patcher dependency ([115c4e9](https://github.com/MorpheApp/morphe-cli/commit/115c4e91025fc3cfb42441ab4a85af3e0a383c61))
* Use repo library release ([9dd9990](https://github.com/MorpheApp/morphe-cli/commit/9dd99905befacfc39ac201cbe5695de3e1c64173))
12 changes: 3 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,9 @@ repositories {
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
// FIXME: Repos for non migrated dependencies.
maven {
// A repository must be specified for some reason. "registry" is a dummy.
url = uri("https://maven.pkg.github.com/revanced/registry")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
// Obtain baksmali/smali from source builds - https://github.com/iBotPeaches/smali
// Remove when official smali releases come out again.
maven { url = uri("https://jitpack.io") }
}

dependencies {
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[versions]
shadow = "8.1.1"
kotlin = "2.0.20"
kotlin = "2.0.21"
kotlinx = "1.8.1"
picocli = "4.7.6"
morphe-patcher = "1.0.0-dev.2"
morphe-library = "1.0.1"
morphe-patcher = "1.0.0"
morphe-library = "1.0.0"

[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
Expand Down
Loading