Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- run: |
TAG_NAME=${{ github.ref_name }}
echo ORG_GRADLE_PROJECT_VERSION_NAME=${TAG_NAME#v} >> $GITHUB_ENV
- run: ./gradlew publishToMavenCentral --no-configuration-cache
- run: ./gradlew publishToMavenCentral
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER: x86_64-linux-gnu-gcc
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
kotlin = "2.1.21"
coroutines = "1.10.2"
serialization = "1.8.1"
android = "8.10.0"
android = "8.12.1"
io = "0.7.0"
gobley = "0.3.0-SNAPSHOT"
ktor = "3.1.3"
gobley = "0.3.4"
ktor = "3.2.3"
poet = "2.2.0"
maven-publish = "0.32.0"
maven-publish = "0.34.0"
gradle-publish = "1.3.1"
detekt = "1.23.8"

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Mon Jun 02 07:55:51 CEST 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
162 changes: 75 additions & 87 deletions kmp-convex-bindings/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions kmp-convex-bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ parking_lot = "0.12.4"
serde_json = "1.0.140"
thiserror = "2.0.12"
tokio = "1.45.1"
uniffi = "0.28.3"
uniffi = "0.29.4"

[dev-dependencies]
maplit = { version = "1" }

[build-dependencies]
uniffi = { version = "0.28.3", features = ["build"] }
uniffi = { version = "0.29.4", features = ["build"] }

[lib]
crate-type = ["cdylib", "lib", "staticlib"]
Expand Down
Loading
Loading