diff --git a/README.md b/README.md index a15421a..11bbede 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # KDiscordIPC +``Current version: 0.2.0`` + A lightweight and easy to use Discord IPC wrapper for Kotlin Many other Discord RPC / IPC libraries are either lacking in features, don't work on certain architectures or platforms, @@ -18,11 +20,16 @@ supported ## Install -**Maven repository coming soon!** +You can add KDiscordIPC to your project via [Jitpack](https://jitpack.io). + +```kts +repositories { + mavenCentral() + maven(url = "https://jitpack.io") +} -```groovy dependencies { - implementation("dev.cbyrne:kdiscordipc:1.0.0") + implementation("com.github.caoimhebyrne:KDiscordIPC:0.2.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index d804aa4..b37f85c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } group = "dev.cbyrne" -version = "1.0.0" +version = "0.2.0" repositories { mavenCentral()