From 396d2ccf6147ce452c34e3c8a6a67779065d9e77 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Wed, 16 Jun 2021 19:26:15 -0800 Subject: [PATCH] Docs/finale changelog (#530) * bump version * add data loss warning * request correct image Co-authored-by: hay-kot --- docs/docs/changelog/v0.5.0.md | 3 +++ docs/docs/overrides/api.html | 2 +- frontend/src/components/Recipe/RecipeCard.vue | 2 +- mealie/core/config.py | 2 +- pyproject.toml | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/docs/changelog/v0.5.0.md b/docs/docs/changelog/v0.5.0.md index 424aa68a4cea..210b2ac265b6 100644 --- a/docs/docs/changelog/v0.5.0.md +++ b/docs/docs/changelog/v0.5.0.md @@ -20,6 +20,9 @@ #### Arm/v7 Support Mealie will no longer build in CI/CD due to a issue with the rust compiler on 32 bit devices. You can reference [this issue on the matrix-org/synapse](https://github.com/matrix-org/synapse/issues/9403){:target="_blank"} Github page that are facing a similar issue. You may still be able to build the docker image you-self. +!!! warning "Potential Data Loss" + With this release comes a major rework of how files are stored on disk and where things belong. Migration of files should be done automatically. We have tested extensively with many different backups and user bases and have found that no one experienced data-loss. HOWEVER, with all the major changes that have occurred, it is vital that to prevent any data-loss you must create a backup and store that backup outside of your mealie instance. If you do not do this, you may lose your data. + ## Bug Fixes - Fixed #25 - Allow changing rating without going into edit - Fixed #475 - trim whitespace on login diff --git a/docs/docs/overrides/api.html b/docs/docs/overrides/api.html index 6c3bf952903e..1a3b0930b11c 100644 --- a/docs/docs/overrides/api.html +++ b/docs/docs/overrides/api.html @@ -14,7 +14,7 @@
diff --git a/frontend/src/components/Recipe/RecipeCard.vue b/frontend/src/components/Recipe/RecipeCard.vue index c2ed83fbc743..1295d461879f 100644 --- a/frontend/src/components/Recipe/RecipeCard.vue +++ b/frontend/src/components/Recipe/RecipeCard.vue @@ -7,7 +7,7 @@ @click="$emit('click')" min-height="275" > - +
diff --git a/mealie/core/config.py b/mealie/core/config.py index 3abf9e6f9a39..c25e3e938b89 100644 --- a/mealie/core/config.py +++ b/mealie/core/config.py @@ -6,7 +6,7 @@ from typing import Any, Optional, Union import dotenv from pydantic import BaseSettings, Field, PostgresDsn, validator -APP_VERSION = "v0.5.0beta" +APP_VERSION = "v0.5.0" DB_VERSION = "v0.5.0" CWD = Path(__file__).parent diff --git a/pyproject.toml b/pyproject.toml index b9826057a4f3..81fdd74b7187 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mealie" -version = "0.5.0b" +version = "0.5.0" description = "A Recipe Manager" authors = ["Hayden "] license = "MIT"