Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: release 0.23.0
Browse files Browse the repository at this point in the history
ObserverOfTime committed Sep 1, 2024

Verified

This commit was signed with the committer’s verified signature.
psafont Pau Ruiz Safont
1 parent 0e199b3 commit 2e3ad20
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -130,11 +130,20 @@ jobs:
env:
CMAKE_INSTALL_LIBDIR: lib/${{matrix.lib_platform}}/${{matrix.lib_arch}}
- name: Cache Kotlin/Native dependencies
id: cache-dependencies
uses: actions/cache@v4
if: matrix.platform != 'JVM' && matrix.platform != 'Android'
with:
path: ${{runner.tool_cache}}/konan/dependencies
key: konan-${{runner.os}}-dependencies
- name: Download Kotlin/Native dependencies
if: matrix.platform == 'macOS/iOS' && steps.cache-dependencies.outputs.cache-hit != 'true'
run: |-
mkdir -p "$RUNNER_TOOL_CACHE/konan/dependencies"
curl -LSs https://download-cdn.jetbrains.com/kotlin/native/$DEP.tar.gz | \
tar -xzf - -C "$RUNNER_TOOL_CACHE/konan/dependencies"
env:
DEP: apple-llvm-20200714-macos-aarch64-essentials
- name: Run tests
run: ./gradlew --no-daemon ${{matrix.targets}}
env:
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The version of the project.
project.version=0.22.4
project.version=0.23.0

# The Android SDK version that is used to compile the project.
sdk.version.compile=34
@@ -8,7 +8,7 @@ sdk.version.min=23
# The Android NDK version that is used to compile the project.
ndk.version=26.3.11579264
# The CMake version that is used to compile the project.
cmake.version=3.29.4
cmake.version=3.30.2

# Specifies the JVM arguments used for the daemon process.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
4 changes: 2 additions & 2 deletions ktreesitter/README.md
Original file line number Diff line number Diff line change
@@ -9,11 +9,11 @@ Kotlin bindings to the [tree-sitter] parsing library.
- [x] Native
- [ ] WASI

*JS and WASM JS will not be supported.*
*JS and WasmJS will not be supported.*

## Installation

```groovy
```kotlin
dependencies {
implementation("io.github.tree-sitter:ktreesitter") version $ktreesitterVersion
}

0 comments on commit 2e3ad20

Please sign in to comment.