Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed Mar 8, 2024
1 parent 0ea7a37 commit 553e736
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ If you're using Version Catalog, add the following to your `libs.versions.toml`
```toml
[versions]
#...
autolinktext = "1.0.0"
autolinktext = "1.1.0"

[libraries]
#...
Expand All @@ -39,7 +39,7 @@ or
```toml
[libraries]
#...
autolinktext = { module = "sh.calvin.autolinktext:autolinktext", version = "1.0.0" }
autolinktext = { module = "sh.calvin.autolinktext:autolinktext", version = "1.1.0" }
```

### Gradle
Expand All @@ -50,15 +50,15 @@ If you're using Gradle instead add the following to your `build.gradle` file:

```kotlin
dependencies {
implementation("sh.calvin.autolinktext:autolinktext:1.0.0")
implementation("sh.calvin.autolinktext:autolinktext:1.1.0")
}
```

#### Groovy DSL

```groovy
dependencies {
implementation 'sh.calvin.autolinktext:autolinktext:1.0.0'
implementation 'sh.calvin.autolinktext:autolinktext:1.1.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion autolinktext/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "sh.calvin.autolinktext"
version = "1.0.0"
version = "1.1.0"

kotlin {
androidTarget {
Expand Down
2 changes: 1 addition & 1 deletion demoApp/composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ compose.desktop {
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "sh.calvin.autolinktext.demo"
packageVersion = "1.0.0"
packageVersion = "1.1.0"
}
}
}
Expand Down

0 comments on commit 553e736

Please sign in to comment.