From 2b70d864ec095a667355e7370774e3b00b5dc16c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramiro=20G=C3=B3mez?= Date: Sat, 23 Dec 2023 02:32:15 +0100 Subject: [PATCH] Bump version and document changes --- Makefile | 2 +- logya/__init__.py | 2 +- logya/sites/docs/content/changes.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e0b3d27..b2707e6 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ logo: cp logya/sites/docs/static/img/logya-small.png logya/sites/base/static/img/logya-small.png -# Call example: make release version=5.0.0 +# Call example: make release version=5.1.0 release: dist git tag -a $(version) -m 'Create version $(version)' git push --tags diff --git a/logya/__init__.py b/logya/__init__.py index 4056c2a..767cf20 100644 --- a/logya/__init__.py +++ b/logya/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- __author__ = 'Ramiro Gómez' __email__ = 'code@ramiro.org' -__version__ = '5.0.0' +__version__ = '5.1.0' diff --git a/logya/sites/docs/content/changes.md b/logya/sites/docs/content/changes.md index 70e4827..5ffe5ee 100644 --- a/logya/sites/docs/content/changes.md +++ b/logya/sites/docs/content/changes.md @@ -4,6 +4,10 @@ title: Changelog template: page.html created: 2013-09-08 19:45:45 --- +## 5.0.1 + +* Make `util.slugify` available to templates. + ## 5.0.0 This release includes several backwards incompatible changes, most notably it requires Python 3.8 or higher.