From b0b98546d2ffcf5a508424ea156a505dc296204c Mon Sep 17 00:00:00 2001 From: Baron Roberts Date: Thu, 30 May 2024 15:58:48 -0700 Subject: [PATCH] Prepare for next release. --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 6 ++++++ build.gradle.kts | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a9f05ca --- /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.0] - 2024-05-30 + +### Added + +- First release + +[unreleased]: https://github.com/cthing/gradle-cthing-versioning/compare/1.0.0...HEAD +[1.0.0]: https://github.com/cthing/gradle-cthing-versioning/releases/tag/1.0.0 diff --git a/README.md b/README.md index 4c879eb..69fd8cb 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ The plugin is available from the applied to a Gradle project using the `plugins` block: ```kotlin +buildscript { + repositories { + mavenCentral() + } +} + plugins { id("org.cthing.cthing-versioning") version "1.0.0" } diff --git a/build.gradle.kts b/build.gradle.kts index 2e00be9..9d50405 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,7 +30,7 @@ buildscript { } } -version = ProjectVersion("1.0.0", BuildType.release) +version = ProjectVersion("1.0.1", BuildType.snapshot) group = "org.cthing" description = "A Gradle plugin that establishes the versioning scheme for C Thing Software projects."