From ee2f8ef2168076ae2f9c02e5f92d24922ad888cc Mon Sep 17 00:00:00 2001 From: Jordi Jaspers Date: Mon, 3 Jun 2024 17:36:21 +0200 Subject: [PATCH] Release version 0.1.4 --- client/package.json | 2 +- documentation/Changelog.md | 15 +++++++++++++++ server/build.gradle.kts | 2 +- server/config/application.yml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/client/package.json b/client/package.json index 9a373c6..8e6fc1a 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "aniflix.stream", - "version": "0.2.0-SNAPSHOT", + "version": "0.1.4", "private": true, "engines": { "node": ">=20.10.0 <21.0.0", diff --git a/documentation/Changelog.md b/documentation/Changelog.md index 22c3e11..3e9320c 100644 --- a/documentation/Changelog.md +++ b/documentation/Changelog.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## UNRELEASED +## [0.1.4] - 2024-06-03 +### ANI-140: +* Removed the default shadcn logo from the login page. + +### ANI-142: +* Adding tailwind prettier configuration. + +### ANI-141: +* Removed overkill password requirements in the server. +* Made the client component more interactive by indicating the password requirements. +* Strength meter is synced with server requirements. + +## [0.1.3] - 2024-06-02 +* Hotfix: password reset flow did not work because of wrong request form. + ## [0.1.2] - 2024-06-01 ### ANI-134: * Try-catch to not break the application when the database is down. diff --git a/server/build.gradle.kts b/server/build.gradle.kts index ae4580f..63cc244 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -8,7 +8,7 @@ import org.springframework.boot.gradle.tasks.run.BootRun // Both "group" and "version" are default Gradle properties, so they need to be set here group = "org.jordijaspers" -version = "0.2.0-SNAPSHOT" +version = "0.1.4" // Other, non-default Gradle, properties need to be defined here val author = "Jordi Jaspers" diff --git a/server/config/application.yml b/server/config/application.yml index eca3851..94dd198 100644 --- a/server/config/application.yml +++ b/server/config/application.yml @@ -58,7 +58,7 @@ spring: profiles.include: ${SPRING_PROFILES_INCLUDE:development} application: - version: 0.2.0-SNAPSHOT + version: 0.1.4 name: ${SPRING_APPLICATION_NAME:aniflix-development} url: ${SPRING_APPLICATION_URL:http://localhost:8080}