Skip to content

Commit

Permalink
Merge pull request #13 from teogor/release/update-1.0.0-alpha02
Browse files Browse the repository at this point in the history
Preparing for release 1.0.0-alpha02
  • Loading branch information
teogor authored Feb 23, 2024
2 parents a50ac2d + c9694f8 commit 80b5d3a
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 7 deletions.
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ winds {
url = "https://source.teogor.dev/querent"

version = createVersion(1, 0, 0) {
alphaRelease(1)
alphaRelease(2)
}

project.group = winds.mavenPublish.groupId ?: "undefined"
Expand Down Expand Up @@ -97,6 +97,9 @@ winds {
}

afterWindsPluginConfiguration { winds ->
project.group = winds.mavenPublish.groupId ?: "undefined"
project.version = winds.mavenPublish.version ?: "undefined"

if (!plugins.hasPlugin("com.gradle.plugin-publish")) {
val mavenPublish: MavenPublish by winds
if (mavenPublish.canBePublished) {
Expand Down
29 changes: 25 additions & 4 deletions docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ sizes and difficulty levels.

| Latest Update | Stable Release | Beta Release | Alpha Release |
|:-----------------:|:--------------:|:------------:|:-------------:|
| February 23, 2023 | - | - | 1.0.0-alpha02 |
| November 27, 2023 | - | - | 1.0.0-alpha01 |

### Declaring dependencies
Expand All @@ -31,31 +32,31 @@ Add the dependencies for the artifacts you need in the `build.gradle` file for y

```kotlin
plugins {
id("dev.teogor.querent") version "1.0.0-alpha01"
id("dev.teogor.querent") version "1.0.0-alpha02"
}

repositories {
mavenCentral() // Add the repository where the library is hosted
}

dependencies {
implementation("dev.teogor.querent:gradle-plugin-api:1.0.0-alpha01")
implementation("dev.teogor.querent:gradle-plugin-api:1.0.0-alpha02")
}
```

=== "Groovy"

```groovy
plugins {
id 'dev.teogor.querent' version '1.0.0-alpha01'
id 'dev.teogor.querent' version '1.0.0-alpha02'
}

repositories {
mavenCentral() // Add the repository where the library is hosted
}

dependencies {
implementation 'dev.teogor.querent:gradle-plugin-api:1.0.0-alpha01'
implementation 'dev.teogor.querent:gradle-plugin-api:1.0.0-alpha02'
}
```

Expand All @@ -71,6 +72,26 @@ existing issue by clicking the star button.

### Version 1.0.0

#### Version 1.0.0-alpha02

February 23, 2024

`dev.teogor.querent:querent-*:1.0.0-alpha02` is
released. [Version 1.0.0-alpha02 contains these commits.](https://github.com/teogor/querent/compare/1.0.0-alpha01...1.0.0-alpha02)

**Bug Fixes**

* Introduce dependency on generated compose resources task for preBuild
phase ([#11](https://github.com/teogor/querent/pull/11)) by [@teogor](https://github.com/teogor)
* Introduce API level 26 requirements for `systemZoneOffset`
and `buildLocalDateTime` ([#9](https://github.com/teogor/querent/pull/9))
by [@teogor](https://github.com/teogor)

**Others**

* Migrate to Java 17 ([#6](https://github.com/teogor/querent/pull/6))
by [@teogor](https://github.com/teogor)

#### Version 1.0.0-alpha01

November 27, 2023
Expand Down
10 changes: 10 additions & 0 deletions docs/releases/changelog/1.0.0-alpha02.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[//]: # (This file was automatically generated - do not edit)

# Version 1.0.0-alpha02

## Latest SDK versions

| Status | Service or Product | Gradle dependency | Latest version |
|:------:|:------------------------------------------------------------------------------:|:------------------------------------:|:--------------:|
| 🧪 | [Querent Gradle Plugin](../../../html/gradle-plugin){:target="_blank"} | dev.teogor.querent | 1.0.0-alpha02 |
| 🧪 | [Querent Gradle Plugin API](../../../html/gradle-plugin-api){:target="_blank"} | dev.teogor.querent:gradle-plugin-api | 1.0.0-alpha02 |
5 changes: 3 additions & 2 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.0-alpha01`](../releases.md)
The latest release is [`1.0.0-alpha02`](../releases.md)

### Releases

Here's a summary of the latest versions:

| Version | Release Notes | Release Date |
|:-------------:|:------------------------------------------:|:------------:|
| 1.0.0-alpha02 | [changelog 🔗](changelog/1.0.0-alpha02.md) | 23 Feb 2024 |
| 1.0.0-alpha01 | [changelog 🔗](changelog/1.0.0-alpha01.md) | 27 Nov 2023 |

### Using Version Catalog
Expand All @@ -25,7 +26,7 @@ libraries, in TOML format.

```toml title="gradle/libs.versions.toml"
[versions]
teogor-querent = "1.0.0-alpha01"
teogor-querent = "1.0.0-alpha02"

[libraries]
teogor-querent-gradle-api = { module = "dev.teogor.querent:gradle-plugin-api", version.ref = "teogor-querent" }
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ nav:
- releases.md
- Implementation: releases/implementation.md
- Changelog:
- 1.0.0-alpha02: releases/changelog/1.0.0-alpha02.md
- 1.0.0-alpha01: releases/changelog/1.0.0-alpha01.md
- Reference: reference.md
- Sponsor: sponsor.md
Expand Down

0 comments on commit 80b5d3a

Please sign in to comment.