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