From b19ea23fa602408643be2be84230a79e75d6f7cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Vigan=C3=B2?= Date: Sun, 10 Jul 2022 22:52:49 +0200 Subject: [PATCH] Update footer and version --- ram/portal/templates/includes/footer.html | 2 +- ram/ram/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ram/portal/templates/includes/footer.html b/ram/portal/templates/includes/footer.html index 2334d13..84568c8 100644 --- a/ram/portal/templates/includes/footer.html +++ b/ram/portal/templates/includes/footer.html @@ -14,7 +14,7 @@ {% if site_conf.show_version %}
-

Version: {{ site_conf.version }}

+

Made with ❤️ and django-ram version {{ site_conf.version }}

{% endif %} diff --git a/ram/ram/__init__.py b/ram/ram/__init__.py index 96fd8ee..5cad5cb 100644 --- a/ram/ram/__init__.py +++ b/ram/ram/__init__.py @@ -1,4 +1,4 @@ from ram.utils import git_suffix -__version__ = "0.0.2" +__version__ = "0.0.3" __version__ += git_suffix(__file__)