From 2e695946196d7cc652597619046a303b3beecf0a Mon Sep 17 00:00:00 2001 From: kamilkalisz Date: Sun, 16 Feb 2025 21:10:34 +0100 Subject: [PATCH] fix version in readme --- .github/workflows/bump_version.yml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 62ea961..16d17e5 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -51,8 +51,8 @@ jobs: shell: bash run: | VERSION="${{ steps.version-extract.outputs.version_name }}" - sed -i '' -E "s|implementation\(\"com\.bngdev\.formatk:[^\"]*\"\)|implementation(\"com.bngdev.formatk:${VERSION}\")|g" README.md - sed -i '' -E "s|implementation 'com\.bngdev\.formatk:[^']*'|implementation 'com.bngdev.formatk:${VERSION}'|g" README.md + sed -i '' -E "s|implementation\(\"com\.bngdev\.formatk:[^\"]*\"\)|implementation(\"com.bngdev:formatk:${VERSION}\")|g" README.md + sed -i '' -E "s|implementation 'com\.bngdev\.formatk:[^']*'|implementation 'com.bngdev:formatk:${VERSION}'|g" README.md - name: Commit version bump run: | diff --git a/README.md b/README.md index ad3391d..3304093 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ FormatK supports the following Kotlin Multiplatform targets: ```kotlin dependencies { - implementation("com.bngdev.formatk:0.0.2") + implementation("com.bngdev:formatk:0.0.2") } ``` @@ -38,7 +38,7 @@ dependencies { ```groovy dependencies { - implementation 'com.bngdev.formatk:0.0.2' + implementation 'com.bngdev:formatk:0.0.2' } ```