Skip to content

Commit

Permalink
bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin-LL committed Dec 16, 2024
1 parent 39346eb commit 9c68191
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you're using Version Catalog, add the following to your `libs.versions.toml`
```toml
[versions]
#...
autolinktext = "1.1.1"
autolinktext = "2.0.0"

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

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

```kotlin
dependencies {
implementation("sh.calvin.autolinktext:autolinktext:1.1.1")
implementation("sh.calvin.autolinktext:autolinktext:2.0.0")
}
```

#### Groovy DSL

```groovy
dependencies {
implementation 'sh.calvin.autolinktext:autolinktext:1.1.1'
implementation 'sh.calvin.autolinktext:autolinktext:2.0.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 @@ -10,7 +10,7 @@ plugins {
}

group = "sh.calvin.autolinktext"
version = "1.1.1"
version = "2.0.0"

kotlin {
androidTarget {
Expand Down

0 comments on commit 9c68191

Please sign in to comment.