Skip to content

Commit

Permalink
Revision: 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmoreton committed Aug 14, 2022
1 parent 3f96da0 commit 5d7febb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Wagtail QRcode Changelog

## [0.1.3] - 2022-08-14

- [Add more options around emailing EPS](https://github.com/nickmoreton/wagtail-qrcode/pull/19)
- [Improve documentation](https://github.com/nickmoreton/wagtail-qrcode/pull/18)

## [0.1.2] - 2022-08-12

Correct version
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wagtail_qrcode"
version = "0.1.2"
version = "0.1.3"
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"
Expand Down
2 changes: 1 addition & 1 deletion wagtail_qrcode/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_app_config = "wagtail_qrcode.apps.WagtailQrcodeAppConfig"


VERSION = (0, 1, 2)
VERSION = (0, 1, 3)
__version__ = ".".join(map(str, VERSION))

0 comments on commit 5d7febb

Please sign in to comment.