Skip to content

Commit

Permalink
Prepare version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstyl committed Aug 3, 2024
1 parent ed3bcf7 commit cff2bf0
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
implementation("com.composables:core:1.9.0")
implementation("com.composables:core:1.10.0")
}
```

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

val publishGroupId = "com.composables"
val publishArtifactId = "core"
val publishVersion = "1.10.0"
val publishVersion = "1.11.0"
val githubUrl = "github.com/composablehorizons/composables-core"

java {
Expand Down
2 changes: 1 addition & 1 deletion docs/bottom-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
}

dependencies {
implementation("com.composables:core:1.9.0")
implementation("com.composables:core:1.10.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/dialog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

dependencies {
implementation("com.composables:core:1.9.0")
implementation("com.composables:core:1.10.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/icon.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

dependencies {
implementation("com.composables:core:1.9.0")
implementation("com.composables:core:1.10.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

dependencies {
implementation("com.composables:core:1.9.0")
implementation("com.composables:core:1.10.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/modal-bottom-sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation("com.composables:core:1.9.0")
implementation("com.composables:core:1.10.0")
}
```

Expand Down
5 changes: 4 additions & 1 deletion scripts/release_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ echo "Publishing to Sonar..."

./gradlew publishAllPublicationsToSonatypeRepository closeAndReleaseSonatypeStagingRepository

echo "👍 Published"
echo "👍 Published $previous_version"

# Retrieve the last commit hash
last_commit=$(git rev-parse HEAD)
Expand All @@ -42,3 +42,6 @@ git commit -m "Prepare version $wip_version"
git push origin --follow-tags

echo "💯 All done. Working version is $previous_version"

echo "TODO: Open a Github version for $previous_version"
open https://github.com/composablehorizons/composables-core/releases/new

0 comments on commit cff2bf0

Please sign in to comment.