diff --git a/README.md b/README.md index 17f175c..8832571 100644 --- a/README.md +++ b/README.md @@ -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" } ``` @@ -45,7 +45,7 @@ library: ```kotlin plugins { - id "dev.teogor.winds" version "1.0.1" + id("dev.teogor.winds") version "1.0.2" } winds { diff --git a/build.gradle.kts b/build.gradle.kts index 80995cd..c9c6f21 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" diff --git a/docs/index.md b/docs/index.md index 1406beb..607f3ac 100644 --- a/docs/index.md +++ b/docs/index.md @@ -28,7 +28,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" } ``` @@ -36,7 +36,7 @@ To implement the Winds plugin, add the following plugin ID to your build.gradle ```groovy plugins { - id 'dev.teogor.winds' version '1.0.1' + id 'dev.teogor.winds' version '1.0.2' } ``` diff --git a/docs/releases.md b/docs/releases.md index 3ce91b7..a84d2e6 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -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 | - | @@ -39,7 +40,7 @@ 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" } ``` @@ -47,7 +48,7 @@ Add the dependencies for the artifacts you need in the `build.gradle` file for y ```groovy plugins { - id 'dev.teogor.winds' version '1.0.1' + id 'dev.teogor.winds' version '1.0.2' } ``` @@ -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 diff --git a/docs/releases/changelog/1.0.2.md b/docs/releases/changelog/1.0.2.md new file mode 100644 index 0000000..2bcc582 --- /dev/null +++ b/docs/releases/changelog/1.0.2.md @@ -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 | diff --git a/docs/releases/implementation.md b/docs/releases/implementation.md index 09cc1f8..ea15a05 100644 --- a/docs/releases/implementation.md +++ b/docs/releases/implementation.md @@ -4,7 +4,7 @@ ### Latest Version -The latest release is [`1.0.1`](../releases.md) +The latest release is [`1.0.2`](../releases.md) ### Plugin Releases @@ -12,6 +12,7 @@ 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 | @@ -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" } @@ -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" }