Skip to content

Commit

Permalink
Fix/version number (#960)
Browse files Browse the repository at this point in the history
* npm install

* set versions

* bump beta label

* bump app version

* v0.5.5 changelog

* allow higher version of python

* add discord release notification
  • Loading branch information
hay-kot authored Feb 3, 2022
1 parent e82020b commit 4b9dcf9
Show file tree
Hide file tree
Showing 9 changed files with 437 additions and 317 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/dockerbuild.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,12 @@ jobs:
docker build --push \
--tag hkotel/mealie:${{ steps.mealie_version.outputs.tag }} \
--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 }}'
31 changes: 31 additions & 0 deletions docs/docs/changelog/v0.5.5.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ nav:
- Style Guide: "contributors/developers-guide/style-guide.md"
- Development Road Map: "roadmap.md"
- Change Log:
- v0.5.5 Bug Fixes: "changelog/v0.5.5.md"
- v0.5.4 Bug Fixes: "changelog/v0.5.4.md"
- v0.5.3 Bug Fixes: "changelog/v0.5.3.md"
- v0.5.2 Misc Updates: "changelog/v0.5.2.md"
Expand Down
3 changes: 0 additions & 3 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"vuex-persistedstate": "^4.0.0-beta.3"
},
"devDependencies": {
"typeface-roboto": "^1.1.13",
"@intlify/vue-i18n-loader": "^1.1.0",
"@mdi/font": "^5.9.55",
"@mdi/js": "^5.9.55",
Expand All @@ -40,6 +39,7 @@
"preload-webpack-plugin": "^2.3.0",
"sass": "^1.34.1",
"sass-loader": "^8.0.2",
"typeface-roboto": "^1.1.13",
"vue-cli-plugin-i18n": "~1.0.1",
"vue-cli-plugin-vuetify": "^2.4.1",
"vue-cli-plugin-webpack-bundle-analyzer": "^4.0.0",
Expand Down Expand Up @@ -72,4 +72,4 @@
"last 2 versions",
"not dead"
]
}
}
3 changes: 1 addition & 2 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<v-main>
<v-banner v-if="demo" sticky>
<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>
</v-banner>
<GlobalSnackbar />
Expand Down Expand Up @@ -136,4 +136,3 @@ export default {
scrollbar-color: transparent transparent;
}
</style>

2 changes: 1 addition & 1 deletion mealie/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import dotenv
from pydantic import BaseSettings, Field, PostgresDsn, validator

APP_VERSION = "v0.5.4"
APP_VERSION = "v0.5.5"
DB_VERSION = "v0.5.0"

CWD = Path(__file__).parent
Expand Down
Loading

0 comments on commit 4b9dcf9

Please sign in to comment.