Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Jan 10, 2022
1 parent 70643fe commit af2a6f6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ targets.
Before, you had only autocompletion and symbol resolution for native APIs from your host Operating System.
With CompleteKotlin, you get it for everything, regardless of your host OS:

Your host OS becomes irrelevant to writing and reading code:
Your host OS becomes irrelevant to writing and reading code:

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

### Step 1: Add the plugin

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

```kts
plugins {
id("com.louiscad.complete-kotlin") version "1.0.0"
id("com.louiscad.complete-kotlin") version "1.1.0"
}
```

That will apply CompleteKotlin to all Kotlin multiplatform modules.

If you're using [refreshVersions](https://github.com/jmfayard/refreshVersions) and don't want to miss any update,
you can omit the version in the snippet above, and add the following in your `versions.properties` file instead:

```properties
plugin.com.louiscad.complete-kotlin=1.1.0
```

### Step 2: Click and wait

Then, make a Gradle sync/reload in the IDE with the best internet connection you have around, and once it's done,
Expand Down
2 changes: 1 addition & 1 deletion plugin/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-SNAPSHOT
1.1.0

0 comments on commit af2a6f6

Please sign in to comment.