Skip to content

Commit

Permalink
Merge branch 'release/1.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
marteinn committed Feb 19, 2023
2 parents 91e4b70 + 1324122 commit 37040e6
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 7 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
wagtail-version:
- 2.15
- 2.16
- 3.0.1
- "2.15.6"
- "4.1.2"
- "4.2"
exclude:
- python-version: "3.11"
wagtail-version: "2.15.6"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
### Changed
### Fixed
### Removed

## [1.4.1] - 2023-02-19
### Added
- Add Wagtail 4.1 and 4.2 support (@marteinn)

### Fixed
- Add github issue template

### Removed
- Drop Wagtail 2.16 support (@marteinn)

## [1.4.0] - 2022-07-03
### Added
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) 2020-2021 Martin Sandström
Copyright (c) 2020-2023 Martin Sandström

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
2 changes: 1 addition & 1 deletion docs/1_getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### Requirements

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


Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
"Framework :: Wagtail :: 3",
"Framework :: Wagtail :: 4",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand All @@ -51,6 +52,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
],
setup_requires=["setuptools_scm", "pytest-runner"],
Expand Down
4 changes: 2 additions & 2 deletions wagtail_color_panel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = "wagtail_color_panel"
__version__ = "1.4.0"
__build__ = 7
__version__ = "1.4.1"
__build__ = 8
__author__ = "Martin Sandström"
__license__ = "MIT"
__copyright__ = "Copyright 2020-present Martin Sandström"

0 comments on commit 37040e6

Please sign in to comment.