From 7ea1c6f8648689aa1967d6e90b3097ef64300ffe Mon Sep 17 00:00:00 2001 From: Kazik Pogoda Date: Tue, 15 Oct 2024 19:33:56 +0200 Subject: [PATCH] build release github action doesn't work, so I updated the latest version manually --- .github/workflows/build-release.yml | 4 ++-- README.md | 2 +- build.gradle.kts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 376f330..8168b26 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -60,8 +60,8 @@ jobs: - name: Checkout branch HEAD run: git checkout ${BRANCH} - - name: Update README - run: sed -i "s/com\.xemantic\.anthropic:anthropic-sdk-kotlin:[0-9]\+\(\.[0-9]\+\)*\>/com.xemantic.anthropic:anthropic-sdk-kotlin:$VERSION/g" README.md +# - name: Update README +# run: sed -i "s/com\.xemantic\.anthropic:anthropic-sdk-kotlin:[0-9]\+\(\.[0-9]\+\)*\>/com.xemantic.anthropic:anthropic-sdk-kotlin:$VERSION/g" README.md - name: Create Pull Request uses: peter-evans/create-pull-request@v7.0.5 diff --git a/README.md b/README.md index a1c2f5a..2bf24a6 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Add to your `build.gradle.kts`: ```kotlin dependencies { - implementation("com.xemantic.anthropic:anthropic-sdk-kotlin:.0.2.2") + implementation("com.xemantic.anthropic:anthropic-sdk-kotlin:.0.3.1") implementation("io.ktor:ktor-client-java:3.0.0") // or the latest ktor version } ``` diff --git a/build.gradle.kts b/build.gradle.kts index bb2aaf5..498415f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -98,7 +98,7 @@ kotlin { nativeTest { dependencies { - // on mac/ios it should be rather Darwin + // on Mac/iOS it should be rather Darwin implementation(libs.ktor.client.curl) } }