Skip to content

Commit

Permalink
Update README and CHANGELOG. Prepare for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Apr 18, 2024
1 parent 3631724 commit 6c6bbd6
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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"
}
```

Expand Down Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6c6bbd6

Please sign in to comment.