Skip to content

Commit 37040e6

Browse files
committed
Merge branch 'release/1.4.1'
2 parents 91e4b70 + 1324122 commit 37040e6

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ jobs:
1212
- "3.8"
1313
- "3.9"
1414
- "3.10"
15+
- "3.11"
1516
wagtail-version:
16-
- 2.15
17-
- 2.16
18-
- 3.0.1
17+
- "2.15.6"
18+
- "4.1.2"
19+
- "4.2"
20+
exclude:
21+
- python-version: "3.11"
22+
wagtail-version: "2.15.6"
1923
steps:
2024
- uses: actions/checkout@v2
2125
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Added
9+
### Changed
10+
### Fixed
11+
### Removed
12+
13+
## [1.4.1] - 2023-02-19
14+
### Added
15+
- Add Wagtail 4.1 and 4.2 support (@marteinn)
16+
17+
### Fixed
18+
- Add github issue template
19+
20+
### Removed
21+
- Drop Wagtail 2.16 support (@marteinn)
822

923
## [1.4.0] - 2022-07-03
1024
### Added

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) 2020-2021 Martin Sandström
3+
Copyright (c) 2020-2023 Martin Sandström
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

docs/1_getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### Requirements
44

55
- Python 3.7+
6-
- Wagtail 2.13+ and Django
6+
- Wagtail 2.15+ and Django
77
- [A browser that supports `input type="color"`](https://caniuse.com/#feat=input-color)
88

99

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Framework :: Wagtail",
4343
"Framework :: Wagtail :: 2",
4444
"Framework :: Wagtail :: 3",
45+
"Framework :: Wagtail :: 4",
4546
"Intended Audience :: Developers",
4647
"License :: OSI Approved :: MIT License",
4748
"Operating System :: OS Independent",
@@ -51,6 +52,7 @@
5152
"Programming Language :: Python :: 3.8",
5253
"Programming Language :: Python :: 3.9",
5354
"Programming Language :: Python :: 3.10",
55+
"Programming Language :: Python :: 3.11",
5456
"Topic :: Utilities",
5557
],
5658
setup_requires=["setuptools_scm", "pytest-runner"],

wagtail_color_panel/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = "wagtail_color_panel"
2-
__version__ = "1.4.0"
3-
__build__ = 7
2+
__version__ = "1.4.1"
3+
__build__ = 8
44
__author__ = "Martin Sandström"
55
__license__ = "MIT"
66
__copyright__ = "Copyright 2020-present Martin Sandström"

0 commit comments

Comments
 (0)