From 2569b4b1048722446c9b7f08bbaf0aba86e05d75 Mon Sep 17 00:00:00 2001 From: zerolab Date: Fri, 18 Oct 2024 17:11:38 +0100 Subject: [PATCH] Bump version to 0.13 --- CHANGELOG.md | 5 +++++ wagtail_footnotes/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5972ee9..33c77ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.13.0 + +- Made the footnotes orderable (https://github.com/torchbox/wagtail-footnotes/pull/74) @willbarton +- Fixed a typo in source strings (https://github.com/torchbox/wagtail-footnotes/pull/76) @jsma + ## 0.12.0 - Added support for Wagtail 6.2 (https://github.com/torchbox/wagtail-footnotes/pull/72) @willbarton diff --git a/wagtail_footnotes/__init__.py b/wagtail_footnotes/__init__.py index b826021..e5ecb06 100644 --- a/wagtail_footnotes/__init__.py +++ b/wagtail_footnotes/__init__.py @@ -1,3 +1,3 @@ -VERSION = (0, 12, 0) +VERSION = (0, 13, 0) __version__ = ".".join(map(str, VERSION))