Skip to content

Commit 65cea22

Browse files
committed
Merge branch 'release/8.1.1'
2 parents 7eddfaa + 8f0ea90 commit 65cea22

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
### Fixed
77
### Removed
88

9+
## [8.1.1] - 2023.12.29
10+
### Fixed
11+
- Fix invalid regex escape character causing a `SyntaxWarning` on Python 3.12 (@jorenham)
12+
- Upgrade example docker image python version to 3.12 (@marteinn)
13+
914
## [8.1.0] - 2023.12.22
1015
### Added
1116
- Add tests for Wagtail 5.1 (@katdom13)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.12-slim
22
MAINTAINER Frojd
33
LABEL version="v0.1.0"
44

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2022 Fröjd Interactive
3+
Copyright (c) 2015-2024 Fröjd Interactive
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

wagtailgeowidget/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"""
88

99
__title__ = "wagtailgeowidget"
10-
__version__ = "8.1.0"
11-
__build__ = 801
10+
__version__ = "8.1.1"
11+
__build__ = 802
1212
__author__ = "Martin Sandström"
1313
__license__ = "MIT"
1414
__copyright__ = "Copyright 2015-Present Fröjd Interactive"

wagtailgeowidget/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from typing import Dict, Optional
33

44
geos_ptrn = re.compile(
5-
"^SRID=([0-9]{1,});POINT\s?\((-?[0-9\.]{1,})\s(-?[0-9\.]{1,})\)$"
5+
r"^SRID=([0-9]{1,});POINT\s?\((-?[0-9\.]{1,})\s(-?[0-9\.]{1,})\)$"
66
)
77

88

0 commit comments

Comments
 (0)