Skip to content

Commit cc20f9e

Browse files
committed
Bump versions and add a bit of docs
1 parent 86b78fb commit cc20f9e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

BUILDING.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ The xcode-kotlin plugin is written in **Kotlin**. It uses
55

66
Building environment: **IntelliJ IDEA**
77

8+
## Build Local Development Version
9+
10+
As this is a tool for Xcode, you'll need to run the build on a mac machine. We'll assume your machine is an ARM, Mx
11+
chip and not Intel. Replace the calls with X64 versions if needed.
12+
13+
To build, open a terminal in the root project folder and run:
14+
15+
```shell
16+
./gradlew preparePlugin linkDebugExecutableMacosArm64
17+
```
18+
19+
To test the local build, run the following:
20+
21+
```shell
22+
./build/bin/macosArm64/debugExecutable/xcode-kotlin.kexe [command]
23+
```
824

925
## Libraries
1026

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "co.touchlab"
12-
version = "1.3.0"
12+
version = "1.3.1"
1313

1414
kotlin {
1515
listOf(macosX64(), macosArm64()).forEach {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kotlinx-coroutines = "1.7.3"
44
kotlinx-cli = "0.3.6"
55
kotlinx-serialization = "1.6.0"
66
kermit = "1.2.2"
7-
gradle-doctor = "0.8.1"
7+
gradle-doctor = "0.9.2"
88

99
[libraries]
1010
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }

0 commit comments

Comments
 (0)