diff --git a/Readme.md b/Readme.md index af03add..ef2326c 100644 --- a/Readme.md +++ b/Readme.md @@ -8,8 +8,10 @@ # Novu Kotlin SDK +[![License](https://poser.pugx.org/unicodeveloper/novu/license.svg)](LICENSE.md) +[![GitHub release (with filter)](https://img.shields.io/github/v/release/novuhq/novu-kotlin?label=SDK&link=https%3A%2F%2Fgithub.com%2Fnovuhq%2Fnovu-kotlin%2Freleases%2Flatest)](https://github.com/novuhq/novu-kotlin/releases/latest) -> The [Novu Kotlin](https://novu.co) SDK provides a fluent and expressive interface for interacting with [Novu's API](https://api.novu.co/api) and managing notifications. +The [Novu Kotlin](https://novu.co) SDK provides a fluent and expressive interface for interacting with [Novu's API](https://docs.novu.co/api-reference/overview) and managing notifications. Please refer to the full [documentation](https://docs.novu.co/docs/overview/introduction) to learn more. ## Installation @@ -20,7 +22,7 @@ co.novu novu-kotlin - 1.1.0 + 1.2.0 ``` @@ -29,13 +31,13 @@ ```kotlin //Kotlin //add dependency -implementation("co.novu:novu-kotlin:1.1.0") +implementation("co.novu:novu-kotlin:1.2.0") ``` ```groovy //Groovy //add dependency -implementation 'co.novu:novu-kotlin:1.1.0' +implementation 'co.novu:novu-kotlin:1.2.0' ``` Sync your project, and you should have the artifacts downloaded. diff --git a/build.gradle.kts b/build.gradle.kts index 4528510..db81ef1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "co.novu" -version = "1.1.0" +version = "1.2.0" java { withJavadocJar()