From 448fa824d1a6fd988b9567b06c0d23fc2525f7e1 Mon Sep 17 00:00:00 2001 From: Maxwellm34 Date: Sun, 7 Jun 2026 17:27:11 +0000 Subject: [PATCH 1/3] docs: fix typos and broken license badge link in README and CONTRIBUTING Signed-off-by: Maxwellm34 --- CONTRIBUTING.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba9cf6a..529042d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -108,4 +108,4 @@ Releases are automated via GitHub Actions and occur when a push or merge is made ## Tips for Contributors - Keep changes focused - small, atomic PRs are easier to review - If you're unsure about an approach, open a Draft PR early for feedback -- Think about future maintainers - clear code, clear cods, clear tests \ No newline at end of file +- Think about future maintainers - clear code, clear code, clear tests \ No newline at end of file diff --git a/README.md b/README.md index 0d2543f..4afb41e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Annotations Maven Central](https://img.shields.io/maven-central/v/io.github.eventhorizonlab/spi-tooling-annotations?color=blue)](https://central.sonatype.com/artifact/io.github.eventhorizonlab/spi-tooling-annotations) [![Processor Maven Central](https://img.shields.io/maven-central/v/io.github.eventhorizonlab/spi-tooling-processor?color=blue)](https://central.sonatype.com/artifact/io.github.eventhorizonlab/spi-tooling-processor) [![Build](https://github.com/EventHorizonLab/SPI-Tooling/actions/workflows/release-and-publish.yml/badge.svg)](https://github.com/EventHorizonLab/SPI-Tooling/actions) -[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.md) --- ## 📖 Overview @@ -18,7 +18,7 @@ This is designed for: --- ## ✨ Features -- **Annotation‑driven**: Mark your contracts with `@ServiceContract` and service implementations with `@ServiceProvider(Contract:class)` +- **Annotation‑driven**: Mark your contracts with `@ServiceContract` and service implementations with `@ServiceProvider(Contract::class)` - **Automatic `META-INF/services` generation** at compile time. - **Multi‑module aware**: Handles aggregation across modules without collisions. - **Deterministic output**: Stable ordering for reproducible builds. From a533e61c7d958ebe064609436c2e3cda1aab2bf9 Mon Sep 17 00:00:00 2001 From: Maxwellm34 Date: Mon, 8 Jun 2026 08:32:19 +0000 Subject: [PATCH 2/3] docs: fix 'clear code, clear code' duplication to 'clear code, clear docs' + add trailing newline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The prior commit on this PR replaced 'clear cods' with 'clear code', creating a duplicate of the preceding 'clear code' phrase. The original typo 'cods' was clearly meant to be 'docs' — fixing to that. Also adds the missing trailing newline that markdownlint-cli2 (and CodeRabbit's MD047 check) flagged. Two-line change, no other diffs. Addresses @coderabbitai review on PR #49. Signed-off-by: Maxwellm34 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 529042d..b0da569 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -108,4 +108,4 @@ Releases are automated via GitHub Actions and occur when a push or merge is made ## Tips for Contributors - Keep changes focused - small, atomic PRs are easier to review - If you're unsure about an approach, open a Draft PR early for feedback -- Think about future maintainers - clear code, clear code, clear tests \ No newline at end of file +- Think about future maintainers - clear code, clear docs, clear tests From e4f82d5d33ad4ef22478d3ab015be3079780830c Mon Sep 17 00:00:00 2001 From: Maxwellm34 Date: Tue, 16 Jun 2026 09:31:06 +0000 Subject: [PATCH 3/3] =?UTF-8?q?build:=20bump=20baseVersion=200.1.21=20?= =?UTF-8?q?=E2=86=92=200.1.22?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per @LMLiam's request on PR #49 (https://github.com/LMLiam/SPI-Tooling/actions/runs/27125535368/job/80167831152?pr=49) the repo expects the version to be bumped in the same PR. Patch bump since this is a documentation-only fix. Signed-off-by: Maxwellm34 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index bc35d3a..1896268 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ kotlin.code.style=official group=io.github.eventhorizonlab -baseVersion=0.1.21 +baseVersion=0.1.22 org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8