From cf37950184b63655ed7cb4b6d3eeedce056695d3 Mon Sep 17 00:00:00 2001 From: "A.B" Date: Thu, 2 May 2024 15:04:57 +0200 Subject: [PATCH] chore: add changelog and prepare 1.0.0 version (#3) Signed-off-by: ablandel --- CHANGELOG.md | 23 +++++++++++++++++++++++ build.gradle.kts | 2 +- 2 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..e11837a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# 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.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +Add the changes here. + +## [1.0.0] - 2024-05-02 + +### Added + +- First version of the kaomoji CRUD endpoints +- First version of the kaomoji GraphQL endpoints +- First version of the tag CRUD endpoints +- First version of the tag GraphQL endpoints + +[unreleased]: https://github.com/ablandel/another-kaomoji/compare/1.0.0..main + +[1.0.0]: https://github.com/ablandel/another-kaomoji/tree/1.0.0 diff --git a/build.gradle.kts b/build.gradle.kts index 381c4b7..3730e1d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } group = "github.ablandel.anotherkaomoji" -version = "1.0.0-SNAPSHOT" +version = "1.0.0" repositories { mavenCentral()