Fix/version number (#960)

* npm install

* set versions

* bump beta label

* bump app version

* v0.5.5 changelog

* allow higher version of python

* add discord release notification
This commit is contained in:
Hayden 2022-02-03 12:29:48 -09:00 committed by GitHub
parent e82020b7e0
commit 4b9dcf95f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 437 additions and 317 deletions

View File

@ -54,3 +54,12 @@ jobs:
docker build --push \ docker build --push \
--tag hkotel/mealie:${{ steps.mealie_version.outputs.tag }} \ --tag hkotel/mealie:${{ steps.mealie_version.outputs.tag }} \
--platform linux/amd64,linux/arm64 . --platform linux/amd64,linux/arm64 .
#
# Release Discord Notification
#
- name: Discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_RELEASE_WEBHOOK }}
uses: Ilshidur/action-discord@0.3.2
with:
args: '🚀 Version {{ EVENT_PAYLOAD.release.tag_name }} of Mealie has been released. See the release notes https://github.com/hay-kot/mealie/releases/tag/{{ EVENT_PAYLOAD.release.tag_name }}'

View File

@ -0,0 +1,31 @@
# v0.5.5 - Bug Fixes
**App Version: v0.5.5**
**Database Version: v0.5.0**
## Breaking Changes
!!! error "Breaking Changes"
None
## What's Changed
* Allow schema to give images as dict by @cadamswaite in https://github.com/hay-kot/mealie/pull/859
* New Crowdin updates by @hay-kot in https://github.com/hay-kot/mealie/pull/854
* White background favicons-2 by @cadamswaite in https://github.com/hay-kot/mealie/pull/860
* Add support for fr-CA language by @sephrat in https://github.com/hay-kot/mealie/pull/865
* New Crowdin updates by @hay-kot in https://github.com/hay-kot/mealie/pull/886
* Adjusts the image view from height to min-height by @MidnightRising in https://github.com/hay-kot/mealie/pull/908
* Trims URL when importing a recipe by @MidnightRising in https://github.com/hay-kot/mealie/pull/909
* New Crowdin updates by @hay-kot in https://github.com/hay-kot/mealie/pull/930
* remove leading and trailing whitespaces from bulk add entries by @StevenMassaro in https://github.com/hay-kot/mealie/pull/921
* add a line to the docs that clarifies that the run.sh file must have LF line endings by @StevenMassaro in https://github.com/hay-kot/mealie/pull/922
* Fix version number for 0.5.4 by @fleaz in https://github.com/hay-kot/mealie/pull/957
* Bump versions (properly) @hay-kot
## New Contributors
* @StevenMassaro made their first contribution in https://github.com/hay-kot/mealie/pull/921
* @fleaz made their first contribution in https://github.com/hay-kot/mealie/pull/957
**Full Changelog**: https://github.com/hay-kot/mealie/compare/v0.5.4...v0.5.5

View File

@ -94,6 +94,7 @@ nav:
- Style Guide: "contributors/developers-guide/style-guide.md" - Style Guide: "contributors/developers-guide/style-guide.md"
- Development Road Map: "roadmap.md" - Development Road Map: "roadmap.md"
- Change Log: - Change Log:
- v0.5.5 Bug Fixes: "changelog/v0.5.5.md"
- v0.5.4 Bug Fixes: "changelog/v0.5.4.md" - v0.5.4 Bug Fixes: "changelog/v0.5.4.md"
- v0.5.3 Bug Fixes: "changelog/v0.5.3.md" - v0.5.3 Bug Fixes: "changelog/v0.5.3.md"
- v0.5.2 Misc Updates: "changelog/v0.5.2.md" - v0.5.2 Misc Updates: "changelog/v0.5.2.md"

View File

@ -5,7 +5,6 @@
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "frontend",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@adapttive/vue-markdown": "^4.0.1", "@adapttive/vue-markdown": "^4.0.1",
@ -20542,7 +20541,6 @@
"integrity": "sha512-pM7CR3yXB6L8Gfn6EmX7FLNE3+V/15I3o33GkSNsWvgsMp6HVGXKkXgojrcfUUauyL1LZOdvTmu4enU2RePGHw==", "integrity": "sha512-pM7CR3yXB6L8Gfn6EmX7FLNE3+V/15I3o33GkSNsWvgsMp6HVGXKkXgojrcfUUauyL1LZOdvTmu4enU2RePGHw==",
"dev": true, "dev": true,
"requires": { "requires": {
"@babel/core": "^7.11.0",
"@babel/helper-compilation-targets": "^7.9.6", "@babel/helper-compilation-targets": "^7.9.6",
"@babel/helper-module-imports": "^7.8.3", "@babel/helper-module-imports": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-class-properties": "^7.8.3",
@ -20555,7 +20553,6 @@
"@vue/babel-plugin-jsx": "^1.0.3", "@vue/babel-plugin-jsx": "^1.0.3",
"@vue/babel-preset-jsx": "^1.2.4", "@vue/babel-preset-jsx": "^1.2.4",
"babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-dynamic-import-node": "^2.3.3",
"core-js": "^3.6.5",
"core-js-compat": "^3.6.5", "core-js-compat": "^3.6.5",
"semver": "^6.1.0" "semver": "^6.1.0"
} }

View File

@ -24,7 +24,6 @@
"vuex-persistedstate": "^4.0.0-beta.3" "vuex-persistedstate": "^4.0.0-beta.3"
}, },
"devDependencies": { "devDependencies": {
"typeface-roboto": "^1.1.13",
"@intlify/vue-i18n-loader": "^1.1.0", "@intlify/vue-i18n-loader": "^1.1.0",
"@mdi/font": "^5.9.55", "@mdi/font": "^5.9.55",
"@mdi/js": "^5.9.55", "@mdi/js": "^5.9.55",
@ -40,6 +39,7 @@
"preload-webpack-plugin": "^2.3.0", "preload-webpack-plugin": "^2.3.0",
"sass": "^1.34.1", "sass": "^1.34.1",
"sass-loader": "^8.0.2", "sass-loader": "^8.0.2",
"typeface-roboto": "^1.1.13",
"vue-cli-plugin-i18n": "~1.0.1", "vue-cli-plugin-i18n": "~1.0.1",
"vue-cli-plugin-vuetify": "^2.4.1", "vue-cli-plugin-vuetify": "^2.4.1",
"vue-cli-plugin-webpack-bundle-analyzer": "^4.0.0", "vue-cli-plugin-webpack-bundle-analyzer": "^4.0.0",
@ -72,4 +72,4 @@
"last 2 versions", "last 2 versions",
"not dead" "not dead"
] ]
} }

View File

@ -5,7 +5,7 @@
<v-main> <v-main>
<v-banner v-if="demo" sticky> <v-banner v-if="demo" sticky>
<div class="text-center"> <div class="text-center">
<b> This is a Demo of the v0.5.4 (BETA) </b> | Username: changeme@email.com | Password: demo <b> This is a Demo of the v0.5.6 (BETA) </b> | Username: changeme@email.com | Password: demo
</div> </div>
</v-banner> </v-banner>
<GlobalSnackbar /> <GlobalSnackbar />
@ -136,4 +136,3 @@ export default {
scrollbar-color: transparent transparent; scrollbar-color: transparent transparent;
} }
</style> </style>

View File

@ -6,7 +6,7 @@ from typing import Any, Optional, Union
import dotenv import dotenv
from pydantic import BaseSettings, Field, PostgresDsn, validator from pydantic import BaseSettings, Field, PostgresDsn, validator
APP_VERSION = "v0.5.4" APP_VERSION = "v0.5.5"
DB_VERSION = "v0.5.0" DB_VERSION = "v0.5.0"
CWD = Path(__file__).parent CWD = Path(__file__).parent

697
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "mealie" name = "mealie"
version = "0.5.2" version = "0.5.5"
description = "A Recipe Manager" description = "A Recipe Manager"
authors = ["Hayden <hay-kot@pm.me>"] authors = ["Hayden <hay-kot@pm.me>"]
license = "MIT" license = "MIT"
@ -9,7 +9,7 @@ license = "MIT"
start = "mealie.app:main" start = "mealie.app:main"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.9" python = "^3.9.9"
aiofiles = "0.5.0" aiofiles = "0.5.0"
aniso8601 = "7.0.0" aniso8601 = "7.0.0"
appdirs = "1.4.4" appdirs = "1.4.4"