Skip to content
Snippets Groups Projects
Commit 8cbc2a2e authored by Leo Puyastier's avatar Leo Puyastier
Browse files

Merge branch 'release/0.2.0' into 'main'

Release/0.2.0

See merge request !10
parents 0c352176 d93203d0
No related branches found
Tags 0.2.0
2 merge requests!11Rebase on main,!10Release/0.2.0
......@@ -15,8 +15,8 @@ if [[ $COMMIT_MSG =~ $BUMP_REGEX ]]; then
CHANGED_FILES=$(git diff --cached --name-only)
EXPECTED_FILES=("pom.xml" "CHANGELOG.md" "Dockerfile")
if [[ $(echo "$CHANGED_FILES" | wc -l) -ne 2 ]]; then
echo "Erreur : Le commit de version ne doit contenir que les fichiers pom.xml et CHANGELOG.md."
if [[ $(echo "$CHANGED_FILES" | wc -l) -ne 3 ]]; then
echo "Erreur : Le commit de version ne doit contenir que les fichiers pom.xml et CHANGELOG.md et Dockerfile."
echo "Fichiers trouvés :"
echo "$CHANGED_FILES"
exit 1
......
......@@ -7,14 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.0] - 2024-12-02
### Added
- Initialized Spotless, Checkstyle
- Created data model for teams, organizations, roles and pivot models
- Created repositories for teams, organizations, roles and pivot models
- Created routes for teams and organizations
- Created routes for teams, organizations and roles
- Created seeders for teams, organizations and roles
- Relation between user and team
- Relation between team and organizations
- Relation between user, organization and role
### Changed
......@@ -32,4 +36,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Created routes for users
[unreleased]: https://gitlab.emi.u-bordeaux.fr/conduite-de-projet/osef/osef-api/
[0.1.0]: https://gitlab.emi.u-bordeaux.fr/conduite-de-projet/osef/osef-api/-/tags/0.1.0
\ No newline at end of file
[0.1.0]: https://gitlab.emi.u-bordeaux.fr/conduite-de-projet/osef/osef-api/-/tags/0.1.0
[0.1.0]: https://gitlab.emi.u-bordeaux.fr/conduite-de-projet/osef/osef-api/-/tags/0.2.0
\ No newline at end of file
......@@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y curl
WORKDIR /app
COPY --from=container-builder /app/target/osef-0.1.0.jar /app/app.jar
COPY --from=container-builder /app/target/osef-0.2.0.jar /app/app.jar
EXPOSE 8080
......
......@@ -3,7 +3,7 @@
<groupId>com.osef</groupId>
<artifactId>osef</artifactId>
<packaging>jar</packaging>
<version>0.1.0</version>
<version>0.2.0</version>
<name>osef</name>
<url>http://maven.apache.org</url>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment