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))