Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 version #85

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: build
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main

jobs:
lint:
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
15 changes: 7 additions & 8 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ Changelog
1.0.0
-----

Release date: -
Release date: 2024/7/5

- Disable the version check for old CKEditor versions.


0.5.2
-----
Since CKEditor 4 is no longer maintained, this release is the last major release of Flask-CKEditor.

Release date: N/A
There will be no new features added to this package, only bug fixes will be provided.

- Add ``cleanify`` function to ``flask_ckeditor.utils`` for HTML sanitization.

- Disable the version check for old CKEditor versions.
- Update the default CDN library version to 4.22.1.
- Drop Python 3.7 support and add 3.12 support.
- Fix the missing bundled CKEditor resources.

0.5.1
-----
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
CKEditor integration for Flask, including image upload, code syntax highlighting, and more.

> [!IMPORTANT]\
> This project is unmaintained due to the CKEditor 4's end of life, and we will not support CKEditor 5 (GPL licensed).
> Please consider using paid CKEditor 4 LTS version, CKEditor 5, or other alternatives. Thanks!
> Since CKEditor 4's end of life, and we will not support CKEditor 5 (GPL licensed).
> This project is in maintainance mode now. There will be no new features, only bug fixes.
> For security reasons, please consider using paid CKEditor 4 LTS version, CKEditor 5, or other alternatives.

## Links

Expand Down
2 changes: 1 addition & 1 deletion flask_ckeditor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class _CKEditor(object):
"""The class implement functions for Jinja2 template."""

@staticmethod
def load(custom_url=None, pkg_type=None, serve_local=None, version='4.14.0'):
def load(custom_url=None, pkg_type=None, serve_local=None, version='4.22.1'):
"""Load CKEditor resource from CDN or local.

:param custom_url: The custom resource url to use, build your CKEditor
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='Flask-CKEditor',
version='1.0.0-dev',
version='1.0.0',
url='http://github.com/helloflask/flask-ckeditor',
license='MIT',
author='Grey Li',
Expand All @@ -43,11 +43,11 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311, docs
envlist = py38, py39, py310, py311, py312, docs
skip_missing_interpreters = true
# skipsdist = true

Expand Down
Loading