From 9ed4b3408302b4e37b65f930f133db59495ea878 Mon Sep 17 00:00:00 2001 From: Sebastian Crane Date: Sat, 14 May 2022 13:19:00 +0100 Subject: [PATCH] Release version 1.1.0 Signed-off-by: Sebastian Crane --- CHANGELOG.md | 7 +++++++ build.clj | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02caad9..d023a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ `matchbot` uses [version 2.0.0 of the Semantic Versioning](https://semver.org/spec/v2.0.0.html) scheme. +## [1.1.0] - 2022-05-14 + +* Add build system for generating POM, JAR and uberjar (standalone JAR) files + +* Improve code quality + ## [1.0.1] - 2022-04-01 * Fix vulnerability that causes serialised data to be deleted when it contains certain user input @@ -17,5 +23,6 @@ * Initial release +[1.1.0]: https://git.libregaming.org/LibreGaming/matchbot/releases/tag/1.1.0 [1.0.1]: https://git.libregaming.org/LibreGaming/matchbot/releases/tag/1.0.1 [1.0.0]: https://git.libregaming.org/LibreGaming/matchbot/releases/tag/1.0.0 diff --git a/build.clj b/build.clj index 1a2f9dd..97558d4 100644 --- a/build.clj +++ b/build.clj @@ -6,7 +6,7 @@ [tools-pom.tasks :as pom])) (def application 'org.libregaming/matchbot) -(def version "1.1.0-SNAPSHOT") +(def version "1.1.0") (def src-dirs ["src"]) (def target-dir "target") (def class-dir (format "%s/%s" target-dir "classes"))