From 48f24ab5d9e289151c2924bf883d078126a54886 Mon Sep 17 00:00:00 2001 From: Nick Moreton Date: Sun, 12 Feb 2023 15:35:56 +0000 Subject: [PATCH 1/2] Update change log --- CHANGELOG | 3 +++ wagtail_honeypot/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 427b9af..d23fad6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,10 +3,13 @@ All notable changes to this project will be documented in this file. ## Unreleased +## [1.1.0] - 2023-02-12 + - Drop older supported versions - Add python 3.11 - Remove pre-commit in CI - Improve developer docs and setup +- Add testing for postgres and mysql ## [1.0.0] - 2022-09-10 - [#15](https://github.com/nickmoreton/wagtail-honeypot/pull/15) Add Wagtail 3/4 support and improve developer documentation and tools diff --git a/wagtail_honeypot/__init__.py b/wagtail_honeypot/__init__.py index 2533cc7..c8e5d81 100644 --- a/wagtail_honeypot/__init__.py +++ b/wagtail_honeypot/__init__.py @@ -1,2 +1,2 @@ -VERSION = (1, 0, 0) +VERSION = (1, 1, 0) __version__ = ".".join(map(str, VERSION)) From 4f611006741fe55cb712803b9ed1567091adad04 Mon Sep 17 00:00:00 2001 From: Nick Moreton Date: Sun, 12 Feb 2023 15:35:56 +0000 Subject: [PATCH 2/2] Update change log --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index beb3dd7..0cee065 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wagtail-honeypot" -version = "1.0.0" +version = "1.1.0" description = "Use this package to add optional honeypot protection to your Wagtail forms." authors = ["Nick Moreton "] license = "MIT"