Skip to content

Commit

Permalink
chore: bump version (#1307)
Browse files Browse the repository at this point in the history
* bump version

* add release notes
  • Loading branch information
hay-kot committed May 29, 2022
1 parent ee93d77 commit b981cf6
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
29 changes: 29 additions & 0 deletions docs/docs/changelog/v1.0.0beta-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### Bug Fixes

- Bump isomorphic-dompurify from 0.18.0 to 0.19.0 in /frontend ([#1257](https://github.com/orhun/git-cliff/issues/1257))
- Bump @nuxtjs/auth-next in /frontend ([#1265](https://github.com/orhun/git-cliff/issues/1265))
- Bad dev dependency ([#1281](https://github.com/orhun/git-cliff/issues/1281))
- Add touch support for mealplanner delete ([#1298](https://github.com/orhun/git-cliff/issues/1298))

### Documentation

- Add references for VSCode dev containers ([#1299](https://github.com/orhun/git-cliff/issues/1299))
- Docker-compose.dev.yml is currently not functional ([#1300](https://github.com/orhun/git-cliff/issues/1300))

### Features

- Add reports to bulk recipe import (url) ([#1294](https://github.com/orhun/git-cliff/issues/1294))
- Rewrite print implementation to support new ing ([#1305](https://github.com/orhun/git-cliff/issues/1305))

### Miscellaneous Tasks

- Github stalebot changes ([#1271](https://github.com/orhun/git-cliff/issues/1271))
- Bump eslint-plugin-nuxt in /frontend ([#1258](https://github.com/orhun/git-cliff/issues/1258))
- Bump @vue/runtime-dom in /frontend ([#1259](https://github.com/orhun/git-cliff/issues/1259))
- Bump nuxt-vite from 0.1.3 to 0.3.5 in /frontend ([#1260](https://github.com/orhun/git-cliff/issues/1260))
- Bump vue2-script-setup-transform in /frontend ([#1263](https://github.com/orhun/git-cliff/issues/1263))
- Update dev dependencies ([#1282](https://github.com/orhun/git-cliff/issues/1282))

### Refactor

- Split up recipe create page ([#1283](https://github.com/orhun/git-cliff/issues/1283))
2 changes: 1 addition & 1 deletion docs/docs/overrides/api.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ nav:
- Improving Ingredient Parser: "contributors/guides/ingredient-parser.md"

- Change Log:
- v1.0.0beta-2: "changelog/v1.0.0beta-2.md"
- v1.0.0 Beta: "changelog/v1.0.0.md"
- v0.5.2 Misc Updates: "changelog/v0.5.2.md"
- v0.5.1 Bug Fixes: "changelog/v0.5.1.md"
Expand Down
3 changes: 1 addition & 2 deletions mealie/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
from mealie.core.settings import app_settings_constructor

from .settings import AppDirectories, AppSettings
from .settings.static import APP_VERSION, DB_VERSION
from .settings.static import APP_VERSION

APP_VERSION
DB_VERSION

CWD = Path(__file__).parent
BASE_DIR = CWD.parent.parent
Expand Down
3 changes: 1 addition & 2 deletions mealie/core/settings/static.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from pathlib import Path

APP_VERSION = "v1.0.0b"
DB_VERSION = "v1.0.0b"
APP_VERSION = "v1.0.0beta-2"

CWD = Path(__file__).parent
BASE_DIR = CWD.parent.parent.parent

0 comments on commit b981cf6

Please sign in to comment.