diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba9cf6a..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 cods, clear tests \ No newline at end of file +- Think about future maintainers - clear code, clear docs, clear tests 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. 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