Skip to content

Commit 0686530

Browse files
committed
Release 1.0.0 version
1 parent ce57b16 commit 0686530

File tree

5 files changed

+10
-16
lines changed

5 files changed

+10
-16
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: build
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
lint:
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25-
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
25+
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
2626
fail-fast: false
2727
runs-on: ${{ matrix.os }}
2828
steps:

CHANGES.rst

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,11 @@ Changelog
44
1.0.0
55
-----
66

7-
Release date: -
8-
9-
- Disable the version check for old CKEditor versions.
10-
11-
12-
0.5.2
13-
-----
14-
15-
Release date: N/A
7+
Release date: 2024/7/5
168

179
- Add ``cleanify`` function to ``flask_ckeditor.utils`` for HTML sanitization.
10+
- Disable the version check for old CKEditor versions.
11+
- Update the default CDN library version to 4.22.1.
1812

1913

2014
0.5.1

flask_ckeditor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class _CKEditor(object):
1414
"""The class implement functions for Jinja2 template."""
1515

1616
@staticmethod
17-
def load(custom_url=None, pkg_type=None, serve_local=None, version='4.14.0'):
17+
def load(custom_url=None, pkg_type=None, serve_local=None, version='4.22.1'):
1818
"""Load CKEditor resource from CDN or local.
1919
2020
:param custom_url: The custom resource url to use, build your CKEditor

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='Flask-CKEditor',
20-
version='1.0.0-dev',
20+
version='1.0.0',
2121
url='http://github.com/helloflask/flask-ckeditor',
2222
license='MIT',
2323
author='Grey Li',
@@ -43,11 +43,11 @@
4343
'Operating System :: OS Independent',
4444
'Programming Language :: Python',
4545
'Programming Language :: Python :: 3',
46-
'Programming Language :: Python :: 3.7',
4746
'Programming Language :: Python :: 3.8',
4847
'Programming Language :: Python :: 3.9',
4948
'Programming Language :: Python :: 3.10',
5049
'Programming Language :: Python :: 3.11',
50+
'Programming Language :: Python :: 3.12',
5151
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
5252
'Topic :: Software Development :: Libraries :: Python Modules'
5353
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310, py311, docs
2+
envlist = py38, py39, py310, py311, py312, docs
33
skip_missing_interpreters = true
44
# skipsdist = true
55

0 commit comments

Comments
 (0)