Skip to content

Commit

Permalink
Merge pull request #87 from teogor/release/1.0.2
Browse files Browse the repository at this point in the history
Release 1.0.2
  • Loading branch information
teogor authored Aug 6, 2024
2 parents 70a4b2f + 37d43e2 commit 3a74ca2
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To implement the Winds plugin, add the following plugin ID to your build.gradle

```kotlin
plugins {
id "dev.teogor.winds" version "1.0.1"
id("dev.teogor.winds") version "1.0.2"
}
```

Expand All @@ -45,7 +45,7 @@ library:

```kotlin
plugins {
id "dev.teogor.winds" version "1.0.1"
id("dev.teogor.winds") version "1.0.2"
}

winds {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {
// Explicitly set the group and version for all subprojects
allprojects {
group = "dev.teogor.winds"
version = "1.0.1"
version = "1.0.2"
}

val ktlintVersion = "0.50.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ To implement the Winds plugin, add the following plugin ID to your build.gradle

```kotlin
plugins {
id("dev.teogor.winds") version "1.0.1"
id("dev.teogor.winds") version "1.0.2"
}
```

=== "Groovy"

```groovy
plugins {
id 'dev.teogor.winds' version '1.0.1'
id 'dev.teogor.winds' version '1.0.2'
}
```

Expand Down
16 changes: 14 additions & 2 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Winds build and publish libraries and applications for multiple platforms, simpl

| Latest Update | Stable Release | Beta Release | Alpha Release |
|:-----------------:|:--------------:|:------------:|:-------------:|
| August 06, 2024 | 1.0.2 | - | - |
| April 18, 2024 | 1.0.1 | - | - |
| April 15, 2024 | 1.0.0 | - | - |
| March 4, 2024 | - | 1.0.0-beta04 | - |
Expand All @@ -39,15 +40,15 @@ Add the dependencies for the artifacts you need in the `build.gradle` file for y

```kotlin
plugins {
id("dev.teogor.winds") version "1.0.1"
id("dev.teogor.winds") version "1.0.2"
}
```

=== "Groovy"

```groovy
plugins {
id 'dev.teogor.winds' version '1.0.1'
id 'dev.teogor.winds' version '1.0.2'
}
```

Expand All @@ -60,6 +61,17 @@ existing issue by clicking the star button.

[Create a new issue](https://github.com/teogor/winds/issues/new){ .md-button }

### Version 1.0.2

August 06, 2024

`dev.teogor.winds:winds-*:1.0.2` is
released. [Version 1.0.2 contains these commits.](https://github.com/teogor/winds/compare/1.0.1...1.0.2)

**Enhancement**

* Enable publishing Kotlin Multiplatform libraries ([#86](https://github.com/teogor/winds/pull/86)) by [@teogor](https://github.com/teogor)

### Version 1.0.1

April 18, 2024
Expand Down
11 changes: 11 additions & 0 deletions docs/releases/changelog/1.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[//]: # (This file was automatically generated - do not edit)

# Version 1.0.2

## Latest SDK versions

| Status | Service or Product | Gradle dependency | Latest version |
|:------:|:-------------------------------------------:|:-----------------------------:|:--------------:|
| - | [Winds API](../../../html/api) | dev.teogor.winds:winds-api | 1.0.2 |
| - | [Winds Common](../../../html/common) | dev.teogor.winds:winds-common | 1.0.2 |
| - | [Winds Plugin](../../../html/gradle-plugin) | dev.teogor.winds | 1.0.2 |
7 changes: 4 additions & 3 deletions docs/releases/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@

### Latest Version

The latest release is [`1.0.1`](../releases.md)
The latest release is [`1.0.2`](../releases.md)

### Plugin Releases

Here's a summary of the latest versions:

| Version | Release Notes | Release Date |
|:-------------:|:------------------------------------------:|:------------:|
| 1.0.2 | [changelog 🔗](changelog/1.0.2.md) | 06 Aug 2024 |
| 1.0.1 | [changelog 🔗](changelog/1.0.1.md) | 18 Apr 2024 |
| 1.0.0 | [changelog 🔗](changelog/1.0.0.md) | 15 Apr 2024 |
| 1.0.0-beta04 | [changelog 🔗](changelog/1.0.0-beta04.md) | 04 Mar 2024 |
Expand All @@ -34,7 +35,7 @@ TOML format.

```toml title="gradle/libs.versions.toml"
[versions]
teogor-winds = "1.0.1"
teogor-winds = "1.0.2"

[plugins]
teogor-winds = { id = "dev.teogor.winds", version.ref = "teogor-winds" }
Expand All @@ -44,7 +45,7 @@ TOML format.

```toml title="gradle/libs.versions.toml"
[versions]
teogor-winds = "1.0.1"
teogor-winds = "1.0.2"

[libraries]
teogor-winds-api = { module = "dev.teogor.winds:api", version.ref = "teogor-winds" }
Expand Down

0 comments on commit 3a74ca2

Please sign in to comment.