diff --git a/README.md b/README.md index b5b3dee..8755e34 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ If you're using Version Catalog, add the following to your `libs.versions.toml` ```toml [versions] #... -autolinktext = "1.1.0" +autolinktext = "1.1.1" [libraries] #... @@ -43,7 +43,7 @@ or ```toml [libraries] #... -autolinktext = { module = "sh.calvin.autolinktext:autolinktext", version = "1.1.0" } +autolinktext = { module = "sh.calvin.autolinktext:autolinktext", version = "1.1.1" } ``` ### Gradle @@ -54,7 +54,7 @@ If you're using Gradle instead add the following to your `build.gradle` file: ```kotlin dependencies { - implementation("sh.calvin.autolinktext:autolinktext:1.1.0") + implementation("sh.calvin.autolinktext:autolinktext:1.1.1") } ``` @@ -62,7 +62,7 @@ dependencies { ```groovy dependencies { - implementation 'sh.calvin.autolinktext:autolinktext:1.1.0' + implementation 'sh.calvin.autolinktext:autolinktext:1.1.1' } ``` diff --git a/demoApp/composeApp/build.gradle.kts b/demoApp/composeApp/build.gradle.kts index 674d8c7..6f5aca7 100644 --- a/demoApp/composeApp/build.gradle.kts +++ b/demoApp/composeApp/build.gradle.kts @@ -113,7 +113,7 @@ compose.desktop { nativeDistributions { targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) packageName = "sh.calvin.autolinktext.demo" - packageVersion = "1.1.0" + packageVersion = "1.0.0" } } }