diff --git a/README.md b/README.md index 684786a..71a9044 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/bottom-sheet.md b/docs/bottom-sheet.md index f3bfe6e..0a02bdb 100644 --- a/docs/bottom-sheet.md +++ b/docs/bottom-sheet.md @@ -21,7 +21,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/dialog.md b/docs/dialog.md index 8e1e7cf..5abe4da 100644 --- a/docs/dialog.md +++ b/docs/dialog.md @@ -21,7 +21,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/dropdown-menu.md b/docs/dropdown-menu.md index 1c951b5..4214167 100644 --- a/docs/dropdown-menu.md +++ b/docs/dropdown-menu.md @@ -21,7 +21,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/icon.md b/docs/icon.md index 895d4d1..3b74e53 100644 --- a/docs/icon.md +++ b/docs/icon.md @@ -18,7 +18,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/modal-bottom-sheet.md b/docs/modal-bottom-sheet.md index 200a2bc..d4c7f18 100644 --- a/docs/modal-bottom-sheet.md +++ b/docs/modal-bottom-sheet.md @@ -21,7 +21,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/scrollarea.md b/docs/scrollarea.md index 0d0aeb8..5b85b57 100644 --- a/docs/scrollarea.md +++ b/docs/scrollarea.md @@ -24,7 +24,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/docs/separators.md b/docs/separators.md index ee8f9fd..4ffc649 100644 --- a/docs/separators.md +++ b/docs/separators.md @@ -19,7 +19,7 @@ repositories { } dependencies { - implementation("com.composables:core:1.18.1") + implementation("com.composables:core:1.18.2") } ``` diff --git a/scripts/release_version.sh b/scripts/release_version.sh index b6036f0..500ddf2 100755 --- a/scripts/release_version.sh +++ b/scripts/release_version.sh @@ -1,6 +1,11 @@ #!/bin/bash set -e +echo "Running tests..." +./gradlew core:jvmTest + +echo "All tests passed..." + # Define the root directory as the current directory root_dir=$(pwd)