Skip to content

Commit

Permalink
Prepare to the first release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Dec 17, 2021
1 parent c8e2582 commit 97fe580
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {
And add a dependency code to your **module**'s `build.gradle` file.
```gradle
dependencies {
implementation "io.getstream.avatarview-coil:1.0.0-beta"
implementation "io.getstream.avatarview-coil:1.0.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion avatarview-coil/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
if (snapshot) {
PUBLISH_VERSION = Configuration.snapshotVersionName
} else {
PUBLISH_VERSION = Configuration.versionName + "-beta"
PUBLISH_VERSION = Configuration.versionName
}
PUBLISH_ARTIFACT_ID = 'avatarview-coil'
}
Expand Down
2 changes: 1 addition & 1 deletion avatarview-glide/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
if (snapshot) {
PUBLISH_VERSION = Configuration.snapshotVersionName
} else {
PUBLISH_VERSION = Configuration.versionName + "-beta"
PUBLISH_VERSION = Configuration.versionName
}
PUBLISH_ARTIFACT_ID = 'avatarview-glide'
}
Expand Down
2 changes: 1 addition & 1 deletion avatarview-stream-integration/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
if (snapshot) {
PUBLISH_VERSION = Configuration.snapshotVersionName
} else {
PUBLISH_VERSION = Configuration.versionName + "-beta"
PUBLISH_VERSION = Configuration.versionName
}
PUBLISH_ARTIFACT_ID = 'avatarview-stream-integration'
}
Expand Down
2 changes: 1 addition & 1 deletion avatarview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
if (snapshot) {
PUBLISH_VERSION = Configuration.snapshotVersionName
} else {
PUBLISH_VERSION = Configuration.versionName + "-beta"
PUBLISH_VERSION = Configuration.versionName
}
PUBLISH_ARTIFACT_ID = 'avatarview'
}
Expand Down

0 comments on commit 97fe580

Please sign in to comment.