Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2"
id("dev.teogor.winds") version "1.0.3"
}
```

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

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

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.2"
version = "1.0.3"
}

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.2"
id("dev.teogor.winds") version "1.0.3"
}
```

=== "Groovy"

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

Expand Down
4 changes: 2 additions & 2 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,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.2"
id("dev.teogor.winds") version "1.0.3"
}
```

=== "Groovy"

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

Expand Down
11 changes: 11 additions & 0 deletions docs/releases/changelog/1.0.3.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.3

## Latest SDK versions

| Status | Service or Product | Gradle dependency | Latest version |
|:------:|:-------------------------------------------:|:-----------------------------:|:--------------:|
| - | [Winds API](../../../html/api) | dev.teogor.winds:winds-api | 1.0.3 |
| - | [Winds Common](../../../html/common) | dev.teogor.winds:winds-common | 1.0.3 |
| - | [Winds Plugin](../../../html/gradle-plugin) | dev.teogor.winds | 1.0.3 |
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.2`](../releases.md)
The latest release is [`1.0.3`](../releases.md)

### Plugin Releases

Here's a summary of the latest versions:

| Version | Release Notes | Release Date |
|:-------------:|:------------------------------------------:|:------------:|
| 1.0.3 | [changelog 🔗](changelog/1.0.3.md) | 24 Oct 2025 |
| 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 |
Expand All @@ -35,7 +36,7 @@ TOML format.

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

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

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

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