From 9ab4b327ca62cdf07203157dba17786614a327b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Moitti=C3=A9?= Date: Tue, 15 Oct 2024 14:14:28 +0200 Subject: [PATCH] Release version 1.0.0 --- Dockerfile | 4 ++-- build.gradle | 2 +- changelog.md | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7668b0bf..ec1b6fe6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,6 @@ COPY . . RUN gradle clean build -x test FROM eclipse-temurin:21 -COPY --from=build /app/build/libs/leto-modelizer-api-0.0.1-SNAPSHOT.jar . +COPY --from=build /app/build/libs/leto-modelizer-api-1.0.0.jar . EXPOSE 8443 -ENTRYPOINT ["java","-jar","/leto-modelizer-api-0.0.1-SNAPSHOT.jar"] +ENTRYPOINT ["java","-jar","/leto-modelizer-api-1.0.0.jar"] diff --git a/build.gradle b/build.gradle index f7fdc44a..54a452f5 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ idea { } group = 'com.ditrit' -version = '0.0.1-SNAPSHOT' +version = '1.0.0' java { sourceCompatibility = '21' diff --git a/changelog.md b/changelog.md index 2019cc53..2830e7e4 100644 --- a/changelog.md +++ b/changelog.md @@ -5,7 +5,7 @@ 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/10/15 ### Added @@ -101,3 +101,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * `POST /api/ai/conversations/[CONVERSATION_ID]/messages`, to send a message to AI. * `/api/login`, to login. * `/api/redirect`, to redirect with token on leto-modelizer/leto-modelizer-admin. + +[1.0.0]: https://github.com/ditrit/leto-modelizer-api/blob/main/changelog.md#1.0.0 \ No newline at end of file