Skip to content

Commit

Permalink
Version updated from 0.8.4 to 0.8.5
Browse files Browse the repository at this point in the history
Signed-off-by: Trey <[email protected]>
  • Loading branch information
TreyWW committed Sep 30, 2024
1 parent afcff12 commit 2a2fa51
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion backend/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import absolute_import, unicode_literals

__version__ = "0.8.4"
__version__ = "0.8.5"
8 changes: 5 additions & 3 deletions frontend/templates/pages/invoices/dashboard/core/main.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% extends base|default:"base/base.html" %}
{% block content %}
{% include "pages/invoices/structure/toggler.html" %}
{% if page_template %}
{% include page_template %}
{% endif %}
<div data-hx-swap="content">
{% if page_template %}
{% include page_template %}
{% endif %}
</div>
{% endblock content %}
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{% extends base|default:"base/base.html" %}
{% block content %}
<div class="grid grid-cols-1 md:grid-cols-10 gap-4">
{% include "pages/invoices/structure/toggler.html" %}
<div class="col-span-9 lg:col-span-8" data-hx-swap="content">
{% if page_template %}
{% include page_template %}
{% endif %}
</div>
{% include "pages/invoices/structure/toggler.html" %}
<div data-hx-swap="content">
{% if page_template %}
{% include page_template %}
{% endif %}
</div>
{% endblock content %}
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "MyFinances"
version = "0.8.4"
version = "0.8.5"
description = "github.com/TreyWW/MyFinances"
authors = ["TreyWW"]
readme = "README.md"
Expand Down Expand Up @@ -105,7 +105,7 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.bumpversion]
current_version = "0.8.4"
current_version = "0.8.5"
commit = true
commit_args = "-s"
tag = true
Expand Down

0 comments on commit 2a2fa51

Please sign in to comment.