From c71a308bd683f76fd01920bf4f9586ae2df17c86 Mon Sep 17 00:00:00 2001 From: Nick Moreton Date: Fri, 9 Sep 2022 21:33:16 +0100 Subject: [PATCH] Release version updated --- pyproject.toml | 2 +- wagtail_qrcode/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f307387..b48c178 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wagtail_qrcode" -version = "0.1.4" +version = "1.0.0" description = "Create a QR code that can be used to link to a wagtail page" authors = ["Nick Moreton"] repository = "https://github.com/nickmoreton/wagtail-qrcode" diff --git a/wagtail_qrcode/__init__.py b/wagtail_qrcode/__init__.py index 5c11592..f87b445 100644 --- a/wagtail_qrcode/__init__.py +++ b/wagtail_qrcode/__init__.py @@ -1,5 +1,5 @@ default_app_config = "wagtail_qrcode.apps.WagtailQrcodeAppConfig" -VERSION = (0, 1, 4) +VERSION = (1, 0, 0) __version__ = ".".join(map(str, VERSION))