diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..938449a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [unreleased] + +## [1.0.1] - 2024-04-18 + +### Added + +- First release + +[unreleased]: https://github.com/cthing/gradle-locc/compare/1.0.1...HEAD +[1.0.1]: https://github.com/cthing/gradle-locc/releases/tag/1.0.1 diff --git a/README.md b/README.md index 952d1a5..ec828a6 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # ![C Thing Software](https://www.cthing.com/branding/CThingSoftware-57x60.png "C Thing Software") gradle-locc +[![CI](https://github.com/cthing/gradle-locc/actions/workflows/ci.yml/badge.svg)](https://github.com/cthing/gradle-locc/actions/workflows/ci.yml) +[![Portal](https://img.shields.io/gradle-plugin-portal/v/org.cthing.locc?label=Plugin%20Portal&logo=gradle)](https://plugins.gradle.org/plugin/org.cthing.locc) + A Gradle plugin for counting lines of code in a project using a fast yet highly accurate algorithm. @@ -52,7 +55,7 @@ project using the `plugins` block: ```kotlin plugins { - id("org.cthing.locc") version "1.0.0" + id("org.cthing.locc") version "1.0.1" } ``` @@ -174,7 +177,7 @@ The following Gradle and Java versions are supported: | Plugin Version | Gradle Version | Minimum Java Version | |----------------|----------------|----------------------| -| 1.0.0 | 8.3+ | 17 | +| 1.0.1+ | 8.3+ | 17 | ## Building diff --git a/build.gradle.kts b/build.gradle.kts index 18d373b..40f2ff8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,8 +19,8 @@ plugins { alias(libs.plugins.versions) } -val baseVersion = "1.0.1" -val isSnapshot = false +val baseVersion = "1.0.2" +val isSnapshot = true val isCIServer = System.getenv("CTHING_CI") != null val buildNumber = if (isCIServer) System.currentTimeMillis().toString() else "0"