Skip to content

Commit af2a6f6

Browse files
committed
Version 1.1.0
1 parent 70643fe commit af2a6f6

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ targets.
1010
Before, you had only autocompletion and symbol resolution for native APIs from your host Operating System.
1111
With CompleteKotlin, you get it for everything, regardless of your host OS:
1212

13-
Your host OS becomes irrelevant to writing and reading code:
13+
Your host OS becomes irrelevant to writing and reading code:
1414

1515
- That means writing and reading iOS, iPadOS, watchOS, tvOS, and macOS code, **without macOS**.
1616
- That also means writing and reading Linux MIPS code, **without Linux**.
@@ -33,15 +33,24 @@ and a bit, or a lot of waiting, depending on your connection and your computer p
3333

3434
### Step 1: Add the plugin
3535

36-
Take the `settings.gradle(.kts)` file located at the root of your Kotlin Multiplatform project,
37-
and add the following at the top of the file, but below the `pluginManagement` block if you have any:
36+
Take the `build.gradle(.kts)` file located at the root of your Kotlin Multiplatform project,
37+
and add the following at the top of the file:
3838

3939
```kts
4040
plugins {
41-
id("com.louiscad.complete-kotlin") version "1.0.0"
41+
id("com.louiscad.complete-kotlin") version "1.1.0"
4242
}
4343
```
4444

45+
That will apply CompleteKotlin to all Kotlin multiplatform modules.
46+
47+
If you're using [refreshVersions](https://github.com/jmfayard/refreshVersions) and don't want to miss any update,
48+
you can omit the version in the snippet above, and add the following in your `versions.properties` file instead:
49+
50+
```properties
51+
plugin.com.louiscad.complete-kotlin=1.1.0
52+
```
53+
4554
### Step 2: Click and wait
4655

4756
Then, make a Gradle sync/reload in the IDE with the best internet connection you have around, and once it's done,

plugin/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0-SNAPSHOT
1+
1.1.0

0 commit comments

Comments
 (0)