Skip to content

Commit

Permalink
fix version script
Browse files Browse the repository at this point in the history
  • Loading branch information
jordond committed Jun 10, 2024
1 parent c0bca1e commit 84dfcd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ -z "$NEW_VERSION" ]; then
fi

# Update Kotlin badge in README.md
LIBS_KOTLIN_VERSION=$(grep "kotlin = " "$VERSION_FILE" | cut -d= -f2 | tr -d ' "')
LIBS_KOTLIN_VERSION=$(grep "kotlin = \"" "$VERSION_FILE" | cut -d= -f2 | tr -d ' "' | tr -d '\n')
if [ -z "$LIBS_KOTLIN_VERSION" ]; then
echo "Unable to find Kotlin version in '$VERSION_FILE'"
else
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Add the following dependencies to your project, depending on the platform you ar

```toml
[versions]
connectivity = "1.0.0"
connectivity = "1.1.0"

[libraries]
connectivity-core = { module = "dev.jordond.connectivity:connectivity-core", version.ref = "connectivity" }
Expand Down

0 comments on commit 84dfcd4

Please sign in to comment.