Skip to content

Commit

Permalink
Release version 1.0.0 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorin95670 authored Oct 15, 2024
2 parents 91e7440 + 9ab4b32 commit e393edc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ idea {
}

group = 'com.ditrit'
version = '0.0.1-SNAPSHOT'
version = '1.0.0'

java {
sourceCompatibility = '21'
Expand Down
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

0 comments on commit e393edc

Please sign in to comment.