Skip to content

Commit

Permalink
Update to Kotlin 1.9.21, macos-13 runner & XCode 15.0.1 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanOltmann authored Nov 24, 2023
1 parent 5258c71 commit 2a4856d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,22 @@ on:
jobs:
build:
name: Build & Test
runs-on: macos-latest
runs-on: macos-13
steps:
- name: Checkout workspace
uses: actions/checkout@v3
timeout-minutes: 5
with:
fetch-depth: 0 # no shallow clones for SonarQube
- name: Set up Java JDK 17
- name: Set up Java JDK 18
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17.0.5+8'
java-version: '18.0.2+9'
- name: Select XCode 15.0.1
run: |
sudo xcode-select -s /Applications/Xcode_15.0.1.app/Contents/Developer
xcodebuild -version
- name: Gradle Cache
uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# XMP Core for Kotlin Multiplatform

[![Kotlin](https://img.shields.io/badge/kotlin-1.9.20-blue.svg?logo=kotlin)](httpw://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.21-blue.svg?logo=kotlin)](httpw://kotlinlang.org)
![JVM](https://img.shields.io/badge/-JVM-gray.svg?style=flat)
![Android](https://img.shields.io/badge/-Android-gray.svg?style=flat)
![macOS](https://img.shields.io/badge/-macOS-gray.svg?style=flat)
Expand All @@ -15,7 +15,7 @@ It's part of [Ashampoo Photos](https://ashampoo.com/photos).
## Installation

```
implementation("com.ashampoo:xmpcore:0.2")
implementation("com.ashampoo:xmpcore:0.2.1")
```

## How to use
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.plugin.mpp.NativeBuildType
import org.jetbrains.kotlin.gradle.plugin.mpp.apple.XCFramework

plugins {
kotlin("multiplatform") version "1.9.20"
kotlin("multiplatform") version "1.9.21"
id("com.android.library") version "7.4.2"
id("maven-publish")
id("signing")
Expand All @@ -12,7 +12,7 @@ plugins {
id("com.asarkar.gradle.build-time-tracker") version "4.3.0"
id("me.qoomon.git-versioning") version "6.4.2"
id("com.goncalossilva.resources") version "0.4.0"
id("com.github.ben-manes.versions") version "0.49.0"
id("com.github.ben-manes.versions") version "0.50.0"
}

repositories {
Expand Down

0 comments on commit 2a4856d

Please sign in to comment.