Skip to content

Commit

Permalink
Merge branch 'release/8.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
marteinn committed Dec 29, 2023
2 parents 7eddfaa + 8f0ea90 commit 65cea22
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
### Fixed
### Removed

## [8.1.1] - 2023.12.29
### Fixed
- Fix invalid regex escape character causing a `SyntaxWarning` on Python 3.12 (@jorenham)
- Upgrade example docker image python version to 3.12 (@marteinn)

## [8.1.0] - 2023.12.22
### Added
- Add tests for Wagtail 5.1 (@katdom13)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.12-slim
MAINTAINER Frojd
LABEL version="v0.1.0"

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions wagtailgeowidget/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"""

__title__ = "wagtailgeowidget"
__version__ = "8.1.0"
__build__ = 801
__version__ = "8.1.1"
__build__ = 802
__author__ = "Martin Sandström"
__license__ = "MIT"
__copyright__ = "Copyright 2015-Present Fröjd Interactive"
2 changes: 1 addition & 1 deletion wagtailgeowidget/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Dict, Optional

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


Expand Down

0 comments on commit 65cea22

Please sign in to comment.